Suppose you have removed the punctuation marks from a text file consisting of several sentences and then stored the resulting string in the variable runOnSentences. Which JavaScript statement can you use at this point to store an array of substrings representing the individual words from runOnSentences in the variable wordList?   a. let wordList = runOnSentences.match(/\s+/g);   b. let wordList = runOnSentences.split("/\s+/g");   c. let wordList = runOnSentences.split(/\b\w+\b/g);   d. let wordList = runOnSentences.split(/\s+/g);

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter9: Advanced Array Concepts
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Suppose you have removed the punctuation marks from a text file consisting of several sentences and then stored the resulting string in the variable runOnSentences. Which JavaScript statement can you use at this point to store an array of substrings representing the individual words from runOnSentences in the variable wordList?
  a.
let wordList = runOnSentences.match(/\s+/g);
  b.
let wordList = runOnSentences.split("/\s+/g");
  c.
let wordList = runOnSentences.split(/\b\w+\b/g);
  d.
let wordList = runOnSentences.split(/\s+/g);
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT