CallBack Functions: Write a function multiplyByTwo that takes a number as a parameter and returns the result of multiplying it by 2. Use a callback function to print the result. function multiplyByTwo(number, callback) { const result = number *...