16 lines
261 B
JavaScript
16 lines
261 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(name) {
|
|
//
|
|
// YOUR CODE GOES HERE
|
|
//
|
|
}
|
|
}
|
|
|
|
export default HelloWorld;
|
|
|