Advertisement
KodingKid

Hello World in Javascript - Coded both basically and complexly

May 2nd, 2021
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. console.log("Hello World!");
  2. //hello world in js coded basically
  3. const long_example = (input1, input2) => {
  4.     console.log("Hello, World!");
  5.     const output = input1 + input2;
  6.     return output;
  7. };
  8. //hello world in js coded complexly
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement