Naxmeify/nloc

View on GitHub
test/nloc-testfile.js

Summary

Maintainability
A
0 mins
Test Coverage
// define var x with 1
var x = 1;

// define var y with 2
var y = 2;

// define var z with 3
var z = 3;

// calculate summary of x, y and z
var result = x + y + z;