Answers for "do nothing javascript"

1

return nothing javascript

if (1 = 1){
	console.log("True")
} else {
	return; // Will Return nothing
}
Posted by: Guest on May-06-2021
2

python do nothing

# To do nothing within a statement, use pass

good = True
if good:
  pass
else:
  print('This is not good')
Posted by: Guest on September-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language