title | description | source | keywords |
---|---|---|---|
say hello | Say Hello in JSON Format | https://localhost | hello, say-hello |
{ "message": "hello zinc!!!" }
title | description | source | keywords |
---|---|---|---|
say "how are you" | Say How Are You for the given names | https://localhost/how | how, say-how-are-you |
var names = ["John", "Bob"];
for (var i in names) {
console.log(`Hey ${names[i]}! How are you?`);
}