Lesson 10
ID: 3744696 • Letter: L
Question
The webpage BrokeCode.html won't run. See if you can find the error.
1. Document the steps you tried to find the problem based on any troubleshooting procedures.
2. Document the problem and the solution.
3. Attach the corrected document.
<!DOCTYPE html>
<html>
<head>
<title>Lesson 10</title>
<script type="text/javascript">
function addNumb(fname,lname){
x=fname+lname
return x;
}
function showname(fname,lname){
alert("funrun");
document.write("<h2>Your first name is: +fname+"</h2>");
document.write("<h2>Your last name is: +lname+ "</h2>");
}
</script>
</head>
<body>