Is it necessary to parseInt a search count? ``` ...
# suitescript
d
Is it necessary to parseInt a search count?
Copy code
var someSearch = s.create({ }).runPaged();

    return parseInt(someSearch.count, 10) > 0;
Seems like this would reliably be an integer, but we have a contractor who use parseInt a number of places for safety, I suppose. And another contractor who will use strings like '-7'.