mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
8 lines
92 B
JavaScript
8 lines
92 B
JavaScript
function Foo() {
|
|
this.bar();
|
|
}
|
|
Foo.prototype.bar = function() {
|
|
result=1;
|
|
};
|
|
new Foo();
|