-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs4.html
More file actions
23 lines (23 loc) · 696 Bytes
/
js4.html
File metadata and controls
23 lines (23 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title></title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.3/handlebars.min.js"></script>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<h1>When will you be twice your age now?</h1>
<script type="text/javascript">
var yourAge = prompt("What's your age today?")
function multiplyByTwo(age) {
var c = age * 2;
var d = c + 2016;
document.write(d);
}
multiplyByTwo(yourAge)
</script>
</body>
</html>