exercism/javascript/hello-world/hello-world.js

13 lines
243 B
JavaScript

//
// This is only a SKELETON file for the 'Hello World' exercise. It's been provided as a
// convenience to get you started writing code faster.
//
class HelloWorld {
hello() {
return 'Hello, World!';
}
}
export default HelloWorld;