You have already completed these exercises!
Do you want to take them again?
You completed the JS String Methods Exercises from W3Schools.com
Share on:
Consider the following string:let x = 'Having fun?';Which one of the following statements returns 'fun'?
let x = 'Having fun?';
x.slice(7, 10)
x.substring(7, 9)
x.substr(7, 10)