0
what is the actual use of '#x27;? i didnt understand from this apps lessons
4 Réponses
+ 12
• String Interpolation `${num}` in JavaScript — https://dmitripavlutin.com/string-interpolation-in-javascript/
+ 3
The $ sign is used in the jquery library to select html elements more efficient (look at jquery course)
+ 3
$ symbol can also be used for string interpolation, for example
let course ="Javascript", place = "SoloLearn";
console .log(`I'm learning ${course} in ${place}`);
+ 2
That looks like dollar sign to me.