Ad
  • Custom User Avatar

    [...] is called the spread syntax. When we write [...str], it spreads the string into an array of its individual characters. This is necessary because reverse() only works on arrays.

    Without the spread (just [str]), you'd get an array with the entire string as a single element — not what we want in this case.

  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution