Methods are called with dot syntax: n.method().
n.method()
Converts the integer to its string representation.
let s = 42.toString() // "42"
Converts the integer to a float.
let f = 7.toFloat() // 7.0