function
funMake() {
fun(arg0, arg1) {
try
{
if
(arg1==0) {
throw
new
Error(
'You cannot divide by zero!'
) ;
}
else
document.write(arg0/arg1 +
'<br /'
);
catch
(ex) {
document.write(ex.message +
'<br />'
finally {
document.write(
'Hello World!'
fun(5, 0);
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
script
src
"js/script.js"
></
</
body
funMake();