topics/Fizzbuzz/script.js   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 0

Size

Lines of Code 9
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 9
mnd 1
bc 1
fnc 0
dl 0
loc 9
bpm 0
cpm 0
noi 0
c 0
b 0
f 0
rs 10
1
const {
2
    fizz,
3
    buzz,
4
    fizzString,
5
    buzzString
6
} = require('./index.js');
7
for (var i = 0; i <= 100; i++) {
8
    console.log(i + ': ' + fizz(i) + '' + buzz(i))
9
};