From 7cb367a38e9ad13314bc3745d5b449a1868c73df Mon Sep 17 00:00:00 2001 From: John Woolbright Date: Tue, 24 Oct 2023 14:07:07 -0500 Subject: [PATCH] Update part-one-arrays.js comments --- arrays/exercises/part-one-arrays.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arrays/exercises/part-one-arrays.js b/arrays/exercises/part-one-arrays.js index 85a27f5537..92f4e45170 100644 --- a/arrays/exercises/part-one-arrays.js +++ b/arrays/exercises/part-one-arrays.js @@ -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.