Well, I have a function which hides or shows a html element:
function myFunction(show) {
if (show) {
foo.show()
} else {
foo.hide()
}
}
Is there a cool way to name myFunction
and the variable it takes?
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
Well, I have a function which hides or shows a html element:
function myFunction(show) {
if (show) {
foo.show()
} else {
foo.hide()
}
}
Is there a cool way to name myFunction
and the variable it takes?