forked from LaunchCodeEducation/javascript-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6578185
commit 7cb367a
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |