箭头函数返回函数文本而不是结果(javascript)

时间:2016-06-25 10:15:20

标签: javascript arrow-functions

箭头函数返回函数文本 - “(n)=> 5 + n”而不是结果(6)。我究竟做错了什么?

let n = 1;
let newText = (n) => 5 + n;
document.write(newText);

3 个答案:

答案 0 :(得分:5)

你没有调用这个函数:

Xamarin.Forms

顺便说一句,这与document.write(newText(42)); =>无关:

let

有同样的问题。

答案 1 :(得分:0)

调用函数

文件撰写(newText(5));

答案 2 :(得分:0)

您需要调用箭头功能。

JS Fiddle

let n = 1;
let newText = (n) => 5 + n;
document.write(newText(n));