- July 25, 2025 (2mo ago)

😎 Tips Koding Shorthand

- it's a "15 mins read" blog.

Template literals `` are cleaner than concatenation

const message = 'Hello, ' + name + '!';

instead we can do:

const message = `Hello, ${name}!`;

U guys can read Indonesian Version on my Medium