Exercise:

Use a single var keyword to create three variables with the following values:
firstName = "John"
lastName = "Doe"
age = 35

Hint: Use the var keyword and separate the variables by comma.
Assign the specified value to each variable.

Edit This Code:
Result:
Correct Code:
Correct Result:
Exercise - © w3schools.com