EN
TypeScript - property 'replaceall' does not exist on type 'string'
1
answers
0
points
I want to use replaceAll
method in TypeScript under Node.js and I can't fix the following error. How can I fix it?
Error:
TypeError: text.replaceAll is not a function
My code:
let text: string = 'a xxx b xxx c';
const letter = 'x';
const replacement = 'y';
text = text.replaceAll(letter, replacement);
1 answer
0
points
Try to add "ES2021.String"
in your tsconfig.json file under compilerOptions
-> lib
.
Example:
{
"compilerOptions": {
// ...
"lib": ["ES2021.String"]
},
// ...
}
0 comments
Add comment