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 trialDennis Trinidad
Full Stack JavaScript Techdegree Student 759 Pointsstring, number, message
every time its a message we have to put it to the string value ["hello", "hi" ] every time its number we just put the number [ 12, 12, 56] without a string every time booleans [true, false]
Please let me know if I am wrong
1 Answer
Bella Bradbury
Front End Web Development Techdegree Graduate 32,790 PointsHi Dennis!
I'm guessing that you're referring to the correct syntax when referencing different data types in JavaScript. If that is the case, then you are correct! To reiterate, the proper syntax would be:
-
STRING |
"Here are characters that otherwise would not be interpreted by JS."
- Quotation marks are always necessary
- Can be any combination of numbers, letters, or symbols
-
NUMBER |
56
75
2006
1
- No quotation marks
- Must consist of only numbers
-
BOOLEAN
true
false
- No quotation marks
- Must be either true or false
Here's a little bit more about primitive data types if you're interested. Happy coding!
Dennis Trinidad
Full Stack JavaScript Techdegree Student 759 PointsDennis Trinidad
Full Stack JavaScript Techdegree Student 759 PointsThank you Bella