gpt4 book ai didi

javascript - 为什么 lodash _.without() 会改变 _ 的值?

转载 作者:行者123 更新时间:2023-11-30 12:45:10 25 4
gpt4 key购买 nike

我只是在节点 repl 中尝试 lodash。

首先我需要lodash

_ = require('lodash')

然后我尝试其中一个功能

_.without([1,2,3], 1)
[ 2, 3 ]

但如果我再次运行它

> _.without([1,2,3], 1)
TypeError: Object 2,3 has no method 'without'
at repl:1:4
at REPLServer.self.eval (repl.js:110:21)
at Interface.<anonymous> (repl.js:239:12)
at Interface.EventEmitter.emit (events.js:95:17)
at Interface._onLine (readline.js:202:10)
at Interface._line (readline.js:531:8)
at Interface._ttyWrite (readline.js:760:14)
at ReadStream.onkeypress (readline.js:99:10)
at ReadStream.EventEmitter.emit (events.js:98:17)
at emitKey (readline.js:1095:12)

现在 _ (lodash lib) 是一个数组?

最佳答案

因为在 nodejs 中 REPL _ 是最后一个表达式的结果。你不应该在 nodejs REPL 中对任何东西使用 _。

http://nodejs.org/api/repl.html

关于javascript - 为什么 lodash _.without() 会改变 _ 的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22776495/

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