我正在学习lua,并查看这两种检查nil的方法
local stats = game.ServerStorage.PlayerMoney:FindFirstChild(player.Name)
if (stats ~= nil) then
-- do stuff
end
if (stats) then
-- do stuff
end
if语句是否等效?如果是这样,包括额外的“〜= nil”部分是否有任何优势?
如果stats = false
,则声明“〜= nil”也有效。