JavaScript concat()
const firstName = 'Giorgi';
const job = 'Doctor';
const birthdayYear = 1991;
const currentDate = new Date();
const currentYear = currentDate.getFullYear()

//same results but different syntax

const giorgisInfo = "I'm " + firstName + ', a ' + (currentYear - birthdayYear) + ' year old ' + job + '!';
console.log(giorgisInfo)
//----------------
const giorgisInfoNew = `I'm ${firstName}, a ${currentYear - birthdayYear} year old ${job}!`
console.log(giorgisInfoNew)
by გიორგი ბაკაშვილი
4 years ago
JavaScript
concat
0
Pro tip: use ```triple backticks around text``` to write in code fences
0
Valeri Tandilashvili 4 years ago
concat() - ასე რატომ გიწერია? თითქოს ფუნქცია არისო "concatenation in JavaScript" - ასე ხო არ აჯობებდა?
REPLY