In node how to declare global variable only available for current execution context, not needed in asynchronous callback?
var obj = 'something'
setTimeout( function(){
// callback context
// i want to get null or undefined value for obj
console.log(obj)
}, 500);