Answers for "how to write a check if a variable exists in javascript"

19

javascript check if variable exists

if (typeof myVar !== 'undefined') {
    // myVar is defined
}
Posted by: Guest on July-23-2019

Code answers related to "how to write a check if a variable exists in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language