How can I check whether a variable is defined in Node.js? June 29, 2023 by Tarik if ( typeof query !== 'undefined' && query ) { //do stuff if query is defined and not null } else { }