helloworld.js 156 B

123456
  1. //Send Hello World as response
  2. if (typeof(NAME) != "undefined"){
  3. sendResp("Hello World! Welcome " + NAME);
  4. }else{
  5. sendResp("Hello there!");
  6. }