im是新的Angular和Typescript。我编写了一个有关将两个数字相加的小程序,但是当我在浏览器中运行它时,控制台中出现错误“ Uncaught SyntaxError:Unexpected token:”。我不知道我在做什么错。有什么想法吗?
var add = (x: number, y: number) => {
return x + y;
};
let res = add(2, 5);
console.log(res);
答案 0 :(得分:2)
浏览器不支持打字稿,因此它出错了。下面是没有打字稿的代码。需要将打字稿代码编译为JS才能在浏览器中运行。
var add = (x, y) => {
return x + y;
};
let res = add(2, 5);
console.log(res);