gpt4 book ai didi

javascript - 如何在 CoffeeScript 中编写这个简单的 javascript 代码?

转载 作者:行者123 更新时间:2023-12-02 19:26:03 25 4
gpt4 key购买 nike

我想要这段 JavaScript 代码:

beforeNode = children[  children.length -1 ]

使用 CoffeeCript 中的这段代码:

beforeNode = children[  children.length -1 ]

CoffeeScript 生成:

beforeNode = children[children.length(-1)];

如何在 coffescript 中编写源代码以生成预期的 javascript 代码?

谢谢

最佳答案

不要使用空格!

// coffeescript
beforeNode = children[children.length-1]

或者在 - 两侧使用空格

// coffeescript
beforeNode = children[children.length - 1]

结果

// js
var beforeNode;

beforeNode = children[children.length - 1];

关于javascript - 如何在 CoffeeScript 中编写这个简单的 javascript 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12044098/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com