Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Numbers Working with Numbers Storing Numbers in Variables

Hi guys I am trying to create variable named age and assign it to my age .... I do not understand what is not correct

what is the problem in the code that i wrote. ?

script.js
let age = "This is my age";
const myNum = 30;

1 Answer

Justin Cox
Justin Cox
12,123 Points

You're close! Just change "This is my age" to 30, like so:

let age = 30;

OR, if you absolutely have to use a constant, you could declare the constant first and then assign it to age, like so:

const myNum = 30;
let age = myNum;