You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
218 B
JavaScript

5 years ago
console.log("Starting....");
var c;
console.log(c);
var d = 55;
// template literal `..`
console.log(`My answer is ${d}`);
5 years ago
var myStr = 'Hello World';
5 years ago
var x = 10;
var y = 20;
console.log(`Translate(${x}, ${y})`);