gpt4 book ai didi

javascript - 一行写两种情况的 if-else 语句不足

转载 作者:行者123 更新时间:2023-12-04 02:26:55 29 4
gpt4 key购买 nike

有一个 javascript 表达式将 name 变量分配给 renamed 变量。它总是与一个排除相同:

renamed =  name == 'John' ? 'Johnny' : name;

但是,我想要两个排除项:

  1. 将 John 重命名为 Johny
  2. 将 Alex 重命名为 Alexander
  3. 所有其他名称均未更改。

是否可以将这个表达式写在一个字符串中?

renamed =  (name == 'John' || name == 'Alex') ? <____> : name;

我需要它在一个字符串中完成。

谢谢。

最佳答案

(name === 'John' && 'Johny') || (name === 'Alex' && 'Alexander') || name;
  • 如果 nameJohn,那么它将转到 && 表达式的下一部分并返回 Johny.

  • 如果 nameAlex,则第一种情况下的 like 返回 Alexander

  • 如果两者都不为真,则按原样返回 name

Demo

此解决方案之所以有效,是因为在 JavaScript 中,&& 运算符计算左侧的表达式,如果它为假,则将返回该值,而根本不会计算右侧的表达式。

如果左边的表达式求值为Truthy,那么右边的表达式将被求值,结果将按原样返回。例如

console.log(1 && 2);
# 2
console.log(0 && 2);
# 0

它首先评估 1,它是 Truthy 所以它评估 2 并返回值。这就是它打印 2 的原因。

在第二种情况下,0 被评估为 Falsy。所以,它立即返回。这就是它打印 0 的原因。

同样的道理

console.log("John" && "Johny");
# Johny

John 将被评估为 Truthy,因此 Johny 也将被评估并返回。这就是我们得到 Johny 的原因。

根据 ECMA 5.1 Standard , 一个对象的真实性将按照下表来判定

+-----------------------------------------------------------------------+
| Argument Type | Result |
|:--------------|------------------------------------------------------:|
| Undefined | false |
|---------------|-------------------------------------------------------|
| Null | false |
|---------------|-------------------------------------------------------|
| Boolean | The result equals the input argument (no conversion). |
|---------------|-------------------------------------------------------|
| Number | The result is false if the argument is +0, −0, or NaN;|
| | otherwise the result is true. |
|---------------|-------------------------------------------------------|
| String | The result is false if the argument is the empty |
| | String (its length is zero); otherwise the result is |
| | true. |
|---------------|-------------------------------------------------------|
| Object | true |
+-----------------------------------------------------------------------+

注意:最后一行,Object,包括对象和数组。

关于javascript - 一行写两种情况的 if-else 语句不足,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23240974/

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