mod
Returns the remainder of the division of two given numbers
mod<return_type>(dividend, divisor);mod<int>(10.423, 3); //1
mod<float>(15, 4.13); //2.61
mod<bool>(21, 7); //0Last updated
mod<return_type>(dividend, divisor);mod<int>(10.423, 3); //1
mod<float>(15, 4.13); //2.61
mod<bool>(21, 7); //0Last updated