console.log('hello world'); console.log("hello world"); const say = "hey"; console.log(`${say} world`);
console.log("hello world"); console.log("hello world"); const say = "hey"; console.log(`${say} world`);
console.log('hello world'); console.log('hello world'); const say = 'hey'; console.log(`${say} world`);
var foo = { bar:"baz", name:"onlinetoolsdev" }
var foo = { bar:"baz", name:"onlinetoolsdev", }
var str1 = "onlinetoolsdev" var str2 = "onlinetoolsdev"; var method1 = function() { console.log(str1) } var method2 = function() { console.log(str2); }; method1() method2();
var str1 = "onlinetoolsdev"; var str2 = "onlinetoolsdev"; var method1 = function() { console.log(str1); } var method2 = function() { console.log(str2); }; method1(); method2();
var str1 = "onlinetoolsdev" var str2 = "onlinetoolsdev" var method1 = function() { console.log(str1) } var method2 = function() { console.log(str2) }; method1() method2()