📅  最后修改于: 2022-03-11 14:59:30.650000             🧑  作者: Mango
If you are separating your declarations with commas, you should not repeat...
..."let" either remove let from each declaration, or use semi-colons instead.
Example:
let a = {}, b = 5, c = function(){}; // OK
let a = {}; let b = 5; // OK
let a = {}, let b = 5; //Not OK -- error