mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
//https://github.com/espruino/Espruino/issues/2197
|
|
|
|
class Thing { constructor() { this.prop1 = 10; } method1() { console.log("here!"); result = 1;} }
|
|
//trace();
|
|
var foo = new Thing();
|
|
//trace();
|
|
console.log(foo.prop1);
|
|
foo.method1();
|
|
|