How can I unset a JavaScript variable?

I have a global variable in JavaScript (actually a window property, but I don’t think it matters) which was already populated by a previous script, but I don’t want another script that will run later to see its value or that it was even defined. I’ve put some_var = undefined and it works for the … Read more