Menu
Coddy logo textTech

Recap - Initialize Variables

Part of the Fundamentals section of Coddy's JavaScript journey — lesson 10 of 77.

challenge icon

Challenge

Beginner

Write code that initializes the following variables:

  • k with the value 88
  • PI with the value 3.14
  • name with the value "bob"

Make sure you use the exact variables names and values. Remember, JavaScript is case sensitive!

Try it yourself

// Type your code below


// Don't change the line below
console.log(`k = ${k}`)
console.log(`PI = ${PI}`)
console.log(`name = ${name}`)

All lessons in Fundamentals