You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
308 B
7 lines
308 B
// replace(): takes to parameter the old substring and new substring.
|
|
// string.replace(oldsubstring, newsubstring)
|
|
|
|
let string = '30 Days Of JavaScript'
|
|
console.log(string.replace('JavaScript', 'Python')) // 30 Days Of Python
|
|
let country = 'Finland'
|
|
console.log(country.replace('Fin', 'Noman')) // Nomanland
|