@kevinhendriks wrote:
Hi all,
I have this strange SyntaxError on the colon ( : ) character.
For example in the following piece of code:class Car {
engine: string;constructor(engine: string) { this.engine = engine; }}
When I try to save the file I'll get the SyntaxError for the line + position of the colon for the one at the property engine and for the parameter engine.
Is there something wrong with this code? All the examples I've seen so far look the same.
Please help meCheers,
Kevin
Posts: 3
Participants: 2
