scrimba
Note at 0:00
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 0:00
AboutCommentsNotes
Note at 0:00
Expand for more info
main.js
run
preview
console
function adjacentElementsProduct(nums) {
let result = 0;

for (i1 = 0; i1 < nums.length-1; ++i1) {
const product=nums[i1]*nums[i1+1];

if (product > result) {
result = product;
}

}

return result;
}



/**
* Test Suite
*/
describe('adjacentElementsProduct()', () => {
it('returns largest product of adjacent values', () => {
const nums = [3, 6, -2, -5, 7, 3];
const result = adjacentElementsProduct(nums);
console.log("result: ", result);
expect(result).toBe(21);
});
});
Console
"0"
,
18
,
0
,
"1"
,
-12
,
18
,
"2"
,
10
,
18
,
"3"
,
-35
,
18
,
"4"
,
21
,
18
,
"result: "
,
21
,
/index.html
LIVE