Check out example codes for "round down swift". It will help you in understanding the concepts better.
Code Example 1
let number = 0.1
// Use ceil to remove the fractional part and round up.
let result = ceil(number)
let number1 = 1.1
// Use floor to remove the fractional part and round down.
let floor1 = floor(number1)
Learn ReactJs, React Native from akashmittal.com