Preview:
let myAge = 25;
let earlyYears = 2;
earlyYears *= 10.5;

let laterYears = (myAge-2);
console.log(laterYears);
console.log(earlyYears);

laterYears *= 4;
console.log(laterYears);

let myAgeInDogYears= (laterYears + earlyYears);
console.log(myAgeInDogYears);


let myName = "Sequan".toLowerCase();

console.log(`My name is ${myName}. I am ${myAge} years old in human years which is ${myAgeInDogYears} years old in dog years. `)
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter