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.

solution-part-1-1.js 158B

1234
  1. console.log('JavaScript'[8]);
  2. console.log("Strings are sequences of characters."[5]);
  3. console.log("Wonderful".length);
  4. console.log("Do spaces count?".length);