js ``
`string text ${expression} string text`
` ` in javascript
// ` ` or a string literal allows you to include javascript in a string easily
a = 3
//instead of:
console.log("the value of a is " + a)
//you can use a string literal:
console.log("the value of a is ${a}")
//you can use javascript
a = 3
b= 5
console.log("a is ${a}, b is ${b}, and a plus b is ${a + b}.")
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us