Answers for "check if a variable already exists"

4

how to check if var exists python

# for local
if 'myVar' in locals():
  # myVar exists.
# for globals
if 'myVar' in globals():
  # myVar exists.
Posted by: Guest on March-26-2020
1

check if isset variable js

var status = 'Variable exists'

try {
  myVar
} catch (ReferenceError) {
  status = 'Variable does not exist'
}

console.log(status)
Posted by: Guest on November-20-2020

Code answers related to "check if a variable already exists"

Code answers related to "Javascript"

Browse Popular Code Answers by Language