Files
JavaScriptServices/samples/misc/ES2015Transpilation/wwwroot/js/main.js
2016-03-23 14:02:18 +00:00

8 lines
133 B
JavaScript

class Greeting {
getMessage() {
return 'Hello from the ES2015 class';
}
}
console.log(new Greeting().getMessage());