QuestenaPractice that shows what to review next
Question 34

What does "one one".replace("one", "two") return?

  1. one two
  2. one one
  3. two two
  4. two oneCorrect answer

Explanation

With a plain string search value, replace changes only the first matching occurrence and returns a new string. Replacing both occurrences would require a different search setup, so "two two" is not produced here.

Continue with this test

Start practice
Question 34: What does "one one".replace("one", "two") return? · JavaScript Fundamentals · Questena