Question: Problem 3 - Write a function called countNestedWord This function accepts two arguments which are both strings The first argument is a long string or

Problem 3 -

  • Write a function called countNestedWord
  • This function accepts two arguments which are both strings
  • The first argument is a long string or phrase and the second is a substring
  • This function should count the number of times the substring is nested within the first string argument (case insensitive)
  • This function returns the number which is the count

Output Example:

countNestedWord(

'nodejavascriptnodevscodejsnodejavascriptvscodenopenonenode',

'node'

)

output: 4

countNestedWord(

'There are many differences between Java and JavaScript',

'java'

)

output: 2

THIS IS JAVASCRIPT

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!