As we have already discussed a couple of times, we can predefine the data type for a variable when you are creating it. This is called Type annotations.
The general format of type annotations is as follows: letvariableName : DataType = value.
A few examples could be:
let myName:String="Sakib Miazi"var myAge:Int=10let iUseIPhone:Bool=false