gpt4 book ai didi

javascript - 基本的 javascript 帮助(获取火车站的输出)

转载 作者:行者123 更新时间:2023-12-02 15:32:47 24 4
gpt4 key购买 nike

当程序运行时,我希望出现一个提示,其中包含三列火车的列表 - (L) 火车、(N) 火车、(S)ix 火车,并请求用户做出选择。

如果用户输入 L,我想要一个警报输出一条包含火车名称的消息和一个包含该火车所有站点的控制台日志输出。

这是我的代码,但当我在浏览器上测试时没有得到任何结果。我走在正确的道路上吗?

   var lTrain = ["8th Ave", "6th Ave", "Union Square", "3rd Ave", "1st Ave", "Bedford Ave"];
var nTrain = ["Times Square", "Herald Square", "28th St", "23rd Street", "Union Square"];
var sTrain = ["Grand Central", "33rd St", "28th St", "23rd St", "Union Square", "Astor Place"];

var trains = alert('The (L) Train, The (N) Train, The (S)ix Train');
var selection = prompt("Select your train");

if (selection = L) {
prompt("The L Train");
console.log(lTrain)
}

if (selection = N) {
prompt("The N Train");
console.log(nTrain)
}

if (selection = S) {
prompt("The S Train");
console.log(sTrain)
}

最佳答案

您使用了错误的比较运算符。您应该使用比较运算符,而不是分配值 = => 分配 == 检查是否相等。

阅读 Material

Comparison Operators

关于javascript - 基本的 javascript 帮助(获取火车站的输出),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33190440/

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