For example if I type
var x = 5;
x;
console output is 5 (as expected)
But when I want to start afresh and clear the console(using ctrl+L or clear(); ),the console clears up but x still contains value 5 (as can be checked by typing x
in console)
I don't want console to remember any previous data after using clear.How can I do it?