Answers for "4. Write a JavaScript function that accepts a string as a parameter and find the word from the string that ends with a particular character. ( for example identify the string end with the character “s”)."

10

javascript endswith

"Hello world".endsWith("world");//true
"Hello world".endsWith("Hello");//false
Posted by: Guest on March-06-2020
0

how to find out what a string ends with in javascript

function isJS(path) {
	return /jsx?$/.test(path)
}
Posted by: Guest on April-09-2020

Code answers related to "4. Write a JavaScript function that accepts a string as a parameter and find the word from the string that ends with a particular character. ( for example identify the string end with the character “s”)."

Code answers related to "Javascript"

Browse Popular Code Answers by Language