Coercion from basics
consider this code below where we use the template literal strings What is happening there?
var numStudents = 16
console.log(
`there are ${numStudents} students.`
);
// "there are 16 students."
the number is simply getting coerced implicitly to a st...
uzma.hashnode.dev24 min read