Code below passed through JSLint causes an error:
Problem at line 8 character 9: Missing 'new'.
ResizeGrid();
How to fix?
"use strict";
var ResizeGrid;
function t() {
var x;
if (x) {
ResizeGrid();
}
}
|
Code below passed through JSLint causes an error:
How to fix?
|
||||
|
|
|
Tick |
|||||
|
|
You should name functions with a lower case initial letter, unless they are intended as constructors. If they are intended as constructors, you should be calling them with |
|||
|
|