Answers for "javascript split last word"

4

javascript split get last element

a = "hello.dear.friends"
a.split(".").pop()
> "friends"
Posted by: Guest on February-18-2021
1

js split last occurence

var lastIndex = src.lastIndexOf('.');

  // Add the string before the last .
  // Return updated string, this will update the src attribute value
  return src.substr(0, lastIndex) + '-fx' + src.substr(lastIndex);
Posted by: Guest on December-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language