- 4
Complete the code to output "name is age years old", where name and age are the declared variable values.
name = "James" age = "42"
5 ответов
+ 2
You can use this format
console.log(`${name} is ${age} years old`)
code - https://code.sololearn.com/cO8XAX0DmpWG/?ref=app
+ 1
If you already knew, then don't ask..!!
If you don't know and asking to clear your doubts..then first show us your attempt...!!
+ 1
You haven't included language name in tags, code link
Next time, frame your question properly.
Here's guide :
https://www.sololearn.com/post/488985/?ref=app
0
thanks
0
Rearrange to generate the following output
Name:
James
Age:
27