Swift Constants Basics
Last time we talked about variables. A place to store or assign data . Another way to assign or store data is using constants. Constants acts the same as variables with only key difference is that values can only be assigned once. It cannot be assigned another value again. Constant Declaration Using the the keyword… Read More Swift Constants Basics