Convert var to let
The function of this online utility is to convert var to let.
For example,
var a = 1;
var b = 2;
will becomes:
let a = 1;
let b = 2;
.
See also:
The function of this online utility is to convert var to let.
For example,
var a = 1;
var b = 2;
will becomes:
let a = 1;
let b = 2;
.
See also: