Update typescript.html.markdown

This will overcome TSError:2362 : "The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type"
This commit is contained in:
lemusthelroy 2019-12-13 07:43:47 +00:00 committed by GitHub
parent 2e04696cf7
commit 5a57d01d05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ class Point3D extends Point {
// Overwrite
dist() {
let d = super.dist();
return Math.sqrt(d * d + this.z * this.z);
return Math.sqrt(d() * d() + this.z * this.z);
}
}