function test(params) { if(params) { console.log(String(params), true) } else { console.log(String(params), false) } } test('') test("") test(null) test(undefined) test(0) test(NaN) test(document) test([])