Is there any way to give same type for multiple variable at once in javascript?
Usally give type like this
/** @type {number} */
var a = 1;
/** @type {number} */
var b = 2;
it is hard to define every single variable's type, so is there any way to give them same type at once?