mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
class Greeting {
|
|
getMessage() {
|
|
return 'Hello from the ES2015 class';
|
|
}
|
|
}
|
|
|
|
console.log(new Greeting().getMessage());
|