如何使用JavaScript在一个语句中声明和定义多个变量?

要在一个语句中声明和定义多个变量,可以使用以下语法-

var anyVariableName1=yourValue1,
anyVariableName2=yourValue2,
anyVariableName3=yourValue3,
anyVariableName4=yourValue4,
.
.
N

示例

var firstName="My First Name is David",
lastName="My Last Name is Miller",
place="I live in AUS";
console.log(firstName);
console.log(lastName);
console.log(place);

要运行上述程序,您需要使用以下命令-

node fileName.js.

在这里,我的文件名为demo182.js。

输出结果

这将产生以下输出-

PS C:\Users\Amit\javascript-code> node demo182.js
My First Name is David
My Last Name is Miller
I live in AUS