Answers for "replace js"

7

replacing characters in string javascript

var myStr = 'this,is,a,test';
var newStr = myStr.replace(/,/g, '-');

console.log( newStr );  // "this-is-a-test"
Posted by: Guest on October-20-2020
58

javascript replace string

var str = "JavaScript replace method test";
var res = str.replace("test", "success");  
//res = Javscript replace method success
Posted by: Guest on July-10-2020
31

javascript replace

var res = str.replace("find", "replace");
Posted by: Guest on October-21-2019
26

replace all occurrences of a string in javascript

const p = 'The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?';

console.log(p.replaceAll('dog', 'monkey'));

// expected output: "The quick brown fox jumps over the lazy monkey. If the monkey reacted, was it really lazy?"
Posted by: Guest on July-25-2020
0

replace js

// Replace All
str = str.replace(/_/g, ' ');
Posted by: Guest on February-03-2021
0

replace js

function spinWords(pw){
	let a = ''
    if(pw.length <= 5){
      a +=pw.split("").reverse()
      console.log(a.replaceAll(',' , ''))
    }else {
      console.log("olá")
    }
}

let hey = "hello";
spinWords(hey) // olleh
Posted by: Guest on October-04-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language