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

Function doSomeMath

08_02/script.js:7–10  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

5
6// Function declaration:
7function doSomeMath(a, b) {
8 let c = a + b;
9 return c;
10}
11
12// Function expression:
13const doMoreMath = function (a = 3, b = 2) {

Callers 1

script.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected