JSFiddle - React, Tailwind, and code Playground
by anton_F
JavaScript
const wordsReplace = words.replace(' ', ` ${replacement} `);
const ithem = words + ' ' + replacement ;
console.log(ithem)
if (words.length === 1) {
return phrase.replace(words,ithem);
};
if (words.length > 1) {
return phrase.replace(words,wordsReplace);
};
}