I\'ve experimented with JavaScript and noticed this strange thing:
var s = \"hello world!\"; s.x = 5; console.log(s.x); //undefined
Every t
Try to do this:
var s = "hello world!"; s.prototype.x = 5; console.log(s.x);