88
Console placeholders
2021-05-27 - JavaScript
1// JS Tip of the Day
2// Console placeholders
3
4const hero = { name: "Batman", weapon: "Batarang" };
5console.log('Hi %s! You are %i years old! Wooooooah!', hero.name, 81);
6// Hi Batman! You are 81 years old! Wooooooah!
7
8console.info('Hi %s! Your object is %o', hero.name, hero);
9// Hi Batman! Your object is {name: "Batman", weapon: "Batarang"}
#JStipoftheday