编辑代码

//程序运行完成时一定要有输出语句,本工具才能正确展示运行结果。 
console.log("Hello JSRUN!   \n\n         - from NodeJS .");


let a = 1;
let b = 2;

c = [a,b]
d = {a,b}
console.log(c, c instanceof Array)
console.log(d, d instanceof Array)