I need to create a variable divide and set it equal to an anonymous function. The function takes two arguments and divides the first argument by the second argument.
Code should look like this...
var divide = function(a, b) {
//your code goes here
}
Thank you all.
Code should look like this...
var divide = function(a, b) {
//your code goes here
}
Thank you all.