I am brand new to typescript/javascript/angular, and I am reading some tutorials I keep coming across the following type of thing:
class Point {
constructor(x, y) {
this.x = x;
this.y = y;
}
toString() {
return `(${this.x}, ${this.y})`;
}
}
Now my question is these are physical back-ticks and everything else I have seen just uses " and ' which I believe are functionally the same so are these two true:
` == '
?` === '
?
Or is this an Angular/Typescript only thing?