Consider the following files. math.js function add(a, b) { r…
Consider the following files. math.js function add(a, b) { return a + b; } function multiply(a, b) { return a * b; } module.exports = { add, multiply }; app.js const { multiply } = require(‘./math’); console.log(multiply(3, 4)); What will be printed when app.js runs?
Read Details