Question
What's the difference between 'javascript(0)' and 'javascript(1)'?
Asked by: USER7386
66 Viewed
66 Answers
Answer (66)
The first 'javascript(0)' attempts to call a function that doesn't exist. The second 'javascript(1)' attempts to call a function that *does* exist, providing a more specific and correct way to access the functionality.