MCPcopy Create free account
hub / github.com/LinkedInLearning/javascript-essential-training-2832077 / doMoreMath

Function doMoreMath

08_02/script.js:13–16  ·  view source on GitHub ↗
(a = 3, b = 2)

Source from the content-addressed store, hash-verified

11
12// Function expression:
13const doMoreMath = function (a = 3, b = 2) {
14 let c = a * b;
15 return c;
16};
17
18console.log("Do some math:", doSomeMath(5, 6));
19console.log("Do more math:", doMoreMath(5, 6));

Callers 1

script.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected