Skip to content

Commit

Permalink
Update part-one-arrays.js comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoolbright23 authored Oct 24, 2023
1 parent 6578185 commit 7cb367a
Showing 1 changed file with 2 additions and 2 deletions.
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.

0 comments on commit 7cb367a

Please sign in to comment.