0
On the console appears "Uncaught Referenceerror: Circle is not defined at draft.html:9"
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Objetos</title>
</head>
<body>
<script>
c = new Circulo(13, 11, 5);
document.write('<p>Constructor: <pre>' + c.constructor + '</pre></p>');
</script>
</body>
</html>
How can I solve?