Skip to content

Instantly share code, notes, and snippets.

@youngjinmo
Created November 17, 2018 06:30
Show Gist options
  • Save youngjinmo/1c2e7a8cf0239bbc3011cacc9b058779 to your computer and use it in GitHub Desktop.
Save youngjinmo/1c2e7a8cf0239bbc3011cacc9b058779 to your computer and use it in GitHub Desktop.
Arrays in Array Quiz in Intro to JavaScript at Udacity.
var numbers = [
[243, 12, 23, 12, 45, 45, 78, 66, 223, 3],
[34, 2, 1, 553, 23, 4, 66, 23, 4, 55],
[67, 56, 45, 553, 44, 55, 5, 428, 452, 3],
[12, 31, 55, 445, 79, 44, 674, 224, 4, 21],
[4, 2, 3, 52, 13, 51, 44, 1, 67, 5],
[5, 65, 4, 5, 5, 6, 5, 43, 23, 4424],
[74, 532, 6, 7, 35, 17, 89, 43, 43, 66],
[53, 6, 89, 10, 23, 52, 111, 44, 109, 80],
[67, 6, 53, 537, 2, 168, 16, 2, 1, 8],
[76, 7, 9, 6, 3, 73, 77, 100, 56, 100]
];
for(var row=0; row<numbers.length row++){
for(var col=0; col<numbers[row].length; col++){
if (numbers[row][col]%2===0) {
numbers[row][col] = "even";
} else {
numbers[row][col] = "odd";
}
console.log(numbers[row][co]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment