title | layout |
---|---|
const vs immutable variables |
page |
What's the difference between max1 and max2?
const max1 = 0xFF;
let max2 = 0xFF;
const
is a sophisticated version of a #define
title | layout |
---|---|
const vs immutable variables |
page |
What's the difference between max1 and max2?
const max1 = 0xFF;
let max2 = 0xFF;
const
is a sophisticated version of a #define