Exception handling
The error handling is exactly like the error handling of any javascript runtime you know.
try {
somelogic();
} catch(e) {
console.error("Failed!", e)
}
The error handling is exactly like the error handling of any javascript runtime you know.
try {
somelogic();
} catch(e) {
console.error("Failed!", e)
}