The JavaScript exception "is not a function" occurs when there was an attempt to call a
value from a function, but the value is not actually a function.... js const obj = { a: 13, b: 37, c: 42 }; obj.map(function...return num * 2; }); // TypeError: obj.map is not a function Use an...