try catch
try {
try_statements
}
catch (exception_var) {
catch_statements
}
finally {
finally_statements
}
try catch
try {
try_statements
}
catch (exception_var) {
catch_statements
}
finally {
finally_statements
}
try/catch
gooi: function () {
try {
if (this.balPositie !== "links") {
throw Error("bal in verkeerde positie")
}
this.draw(300, 50);
this.balPositie = "midden";
} catch {
var bericht = "fout, bal al in de lucht of al gevangen";
document.getElementById("melding").innerHTML = bericht;
}
},
try catch
async function promHandler<T>(
prom: Promise<T>
): Promise<[T | null, any]> {
try {
return [await prom, null];
} catch (error) {
return [null, error];
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us