What is wrong with this Javascript code? I get this Uncaught ReferenceError: dollarkoers is not defined Line: 8 as error
<!DOCTYPE html> <!--Opdracht 59, 61, 63 hoofdstuk 2--> <html lang="nl"> <head> <meta http-equiv="Content-Type" content="tekst/html; charset=UTF-8"> <script src="mijnfunctions.js"></script> <script> function afmelden() { var antwoord = confirm("Wilt u zich afmelden?"); if (antwoord === true) { alert("U wordt afgemeld!!!"); window.close(); } } function dollarKoers() { return (1.36); } function euroKoers() { return (0.74); } </script> <title>mijn functies</title> <script> function verdubbel(inputgetal) { outputgetal = inputgetal * 2; return (outputgetal); } </script> </head> <body> <script> mijngetal = prompt("7"); resultaat = verdubbel (mijngetal); document.write("<br>Input-getal:" + mijngetal); document.write("<br>output-getal:" + resultaat); afmelden(); document.write('<br />De dollar koers is ' + dollarkoers()); document.write('<br />De euro koers is ' + eurokoers()); </script> </body> </html>