gpt4 book ai didi

coffeescript - 检查字符串是否为空或空的最简单方法

转载 作者:行者123 更新时间:2023-12-03 05:05:18 28 4
gpt4 key购买 nike

我有这段代码可以检查空字符串或空字符串。它正在测试中。

eitherStringEmpty= (email, password) ->
emailEmpty = not email? or email is ''
passwordEmpty = not password? or password is ''
eitherEmpty = emailEmpty || passwordEmpty

test1 = eitherStringEmpty "A", "B" # expect false
test2 = eitherStringEmpty "", "b" # expect true
test3 = eitherStringEmpty "", "" # expect true
alert "test1: #{test1} test2: #{test2} test3: #{test3}"

我想知道是否有比不发送电子邮件更好的方法?或者电子邮件是“”。我可以通过一次调用在 CoffeeScript 中执行与 C# string.IsNullOrEmpty(arg) 相同的操作吗?我总是可以为它定义一个函数(就像我所做的那样),但我想知道语言中是否缺少一些东西。

最佳答案

是的:

passwordNotEmpty = not not password

或更短:

passwordNotEmpty = !!password

关于coffeescript - 检查字符串是否为空或空的最简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8127883/

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