Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions arrays/exercises/part-one-arrays.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//Create an array that can hold 4 items name practiceFile.
//Create an array called practiceFile with the following entry: 273.15

//Use the bracket notation method to add "42" and "hello" to the array. Add these new items one at a time. Print the array after each step to confirm the changes.

//Use a SetValue to add the items "false", and "-4.6" to the array. Print the array to confirm the changes.
//Use a single .push() to add the following items: false, -4.6, and "87". Print the array to confirm the changes.