Encountering an error message
Uncaught TypeError: Cannot read property 'top' of undefined
at VM32939 own.js:819
resulting from
var hands_corrected = (hands_original.top + 680)
this issue arises because "hands_original" is not used in any part of my project, making it undefined and causing the error.
In an attempt to fix this problem, I tried
var hands_corrected = (hands_original.top + 680) || 0;
but unfortunately, the error persisted. What could be the mistake I am making?