Tagged Questions
4
votes
3answers
1k views
Undefine variable in Ruby
Let's say I'm using irb, and type a = 5. How do I remove the definition of a so that typing a returns a NameError?
Some context: later I want to do this:
context = Proc.new{}.binding
context.eval 'a ...
3
votes
1answer
297 views
0
votes
3answers
409 views
Programmatically get values of variables local to function in javascript?
Given:
function foo(){
var bar = "quux";
console.log(/*mystery code here*/);
}
I'm looking for code that when inserted into the comment would yield the value of bar. By way of illustration, ...