Answers for "get string before specific @ javascript"

1

js get string before character

var str = "JavaScript is the programming language of the Web.";

// this will return string before the word programming
var result = str.split('programming')[0]; 
// result : "JavaScript is the ";
Posted by: Guest on May-03-2021
0

js get substring before character

//split string into an array and grab the first item

var streetaddress = addy.split(',')[0];
Posted by: Guest on May-02-2021

Code answers related to "get string before specific @ javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language