Hello world! this is my first code snippet here and looking forward to update this blog as i'm learning, Hope this blog will help someone someday. :)
var hello = "Hello world!";
function sayHello(str){
console.log(str);
};
sayHello(hello); // hello world!