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 trialGunter Schroder
2,804 PointsAsked to create an array named data with any 3 numbers in it. Why does this not work?
var data = ['1', '2', '3'];
var data = ['1', '2', '3'];
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
4 Answers
Seth Kroger
56,413 PointsBecause you have quotes around the values, they're considered strings, not numbers.
Jonathan Grieve
Treehouse Moderator 91,253 PointsHi Gunter.
It's because you're trying to put your numbers in quotes which turns them into strings. Anything put into quotes like in your example JavaScript treats as a string so you should take them out :-)
Gunter Schroder
2,804 PointsAhh....Thanks Seth and Jonathan! Much appreciated!
Jonathan Grieve
Treehouse Moderator 91,253 PointsNo problem. :)
Seth Kroger
56,413 PointsYou're welcome :)
Sean Do
11,933 Pointsvar data = ['1', '2', '3'];
You're submitting the numbers as a String. Remove the single quotations.