Add a variable to a class instance at runtime: Difference between revisions

No edit summary
Line 148:
This kind of thing is fundamental to JavaScript, as it's a prototype-based language rather than a class-based one.
<lang javascript> e = {} // generic object
e.foo = 1</lang>
e["bar"] = 2 // name specified at runtime</lang>
 
=={{header|Lua}}==
Anonymous user