7 lines
73 B
JavaScript
7 lines
73 B
JavaScript
(() => {
|
|
helloworld = () => {
|
|
return 'Hello World!!!';
|
|
};
|
|
})();
|
|
|