Swift: how to declare constants?
Example:
var name = "John"
Swift allows you to declare constants for values that won't change.
Solution:
let name = "John"
Example: Solution:Swift: how to declare constants?
Swift allows you to declare constants for values that won't change.
var name = "John"
let name = "John"