Hi @Mya_Zar_Cho
Well done. That works correctly.
You should always use const
instead of let
where possible.
Also, only declaring one variable per declaration is recommended:
const a = 5;
const b = 1;
...
Stay safe,
Michael
Hi @Mya_Zar_Cho
Well done. That works correctly.
You should always use const
instead of let
where possible.
Also, only declaring one variable per declaration is recommended:
const a = 5;
const b = 1;
...
Stay safe,
Michael