Being new to Angular, I understand that mastering TypeScript is crucial for becoming a skilled Angular developer. Therefore, I created this simple program:
function loge(messag){
console.log(messag);
}
var message:string;
message = "Hi";
loge(message);
Although I believe there are no syntax errors in my code, I encounter the following error in my Terminal:
SyntaxError: Unexpected token :
at createScript (vm.js:80:10)
at Object.runInThisContext (vm.js:139:10)
at Module._compile (module.js:607:28)
at Object.Module._extensions..js (module.js:654:10)
at Module.load (module.js:556:32)
at tryModuleLoad (module.js:499:12)
at Function.Module._load (module.js:491:3)
at Function.Module.runMain (module.js:684:10)
at startup (bootstrap_node.js:187:16)
at bootstrap_node.js:608:3
I am puzzled as to why this error occurs and seek assistance to resolve it so I can proceed with my work. My TypeScript version is 2.5.3, and I use PhpStorm as my IDE.
Your help would be greatly appreciated.