1//Javascripts $ function is used to call functions/variables inside a string without using concatenations
2let variableExample = 10;
3let secondExample = variableExample;
4
5let result = `${secondExample} + text`;
6
7console.log(result);
8//output = 10 text
9//this only works with backtick (` `) and not with single or double quotes