Multiples of 3 or 5
Return if a number is a multiple of 3 and 5.
function multiple3And5(n: number): boolean { return n % 15 == 0; }
func Multiple3And5(n int) bool { return n % 15 == 0 }
What is between?
Convert boolean values to strings 'Yes' or 'No'
Your Company Tech Partner