我编写了以下代码:
showTitles = (typeof showTitles !== 'undefined') ? showTitles : 'Y';
showSelectGroup = (typeof showSelectGroup !== 'undefined') ? showSelectGroup : 'Y';
但是JSLint却说:
我应该如何更改我的代码?
最佳答案
请注意,一般而言,这是否是最佳实践尚有待商,,但是如果您想使其与JSLint一起使用,则可以这样做
showTitles = (showTitles !== undefined) ? showTitles : 'Y';