Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

js string interpolation

const apples = 4;
const bananas = 3;
console.log(`I have ${apples} apples`);
console.log(`I have ${apples + bananas} fruit`);
Source by en.wikipedia.org #
 
PREVIOUS NEXT
Tagged: #js #string #interpolation
ADD COMMENT
Topic
Name
5+5 =