QuestenaPractice that shows what to review next
Question 35

What is returned by "red,blue".split(",")?

  1. ["red", "blue"]Correct answer
  2. ["red", ",", "blue"]
  3. "red", "blue"
  4. The number 2

Explanation

split uses the comma as a separator and returns an array containing the two surrounding substrings. The comma is omitted from these ordinary results, and the source string is not modified.

Continue with this test

Start practice
Question 35: What is returned by "red,blue".split(",")? · JavaScript Fundamentals · Questena