I read that you can create extension methods in Typescript and I looked up some code
And put that code in my extension methods.ts but I get an error saying that toNumber doesn't exist. How can I fix this?
You can extend String
interface by augmenting global scope:
export { };
declare global {
interface String {
toNumber(): number;
}
}
String.prototype.toNumber = function (this: string) { return parseFloat(this) };
Playground
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With