You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exer_8_array1.js 242B

1234567891011121314
  1. /* declaratie veriabelen */
  2. 'use stricte'
  3. let practiceFile = [273.15];
  4. /* puch & pull */
  5. practiceFile.push(42);
  6. practiceFile.push('hello');
  7. practiceFile.push(false, -4.6, "87");
  8. /* output */
  9. console.log(practiceFile);