Resolver los problemas de ingles como they,the,home, cars
ript function that(x) { return x.replace(/(^|\s)they(\s|$)/g, "$1they$2"); } var str = "They are the best"; console.log(that(str)); A: You can use a regular expression to replace the word they with the word they and a space: var