17 lines
389 B
HTML
17 lines
389 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>String Tester</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
"use strict";
|
|
|
|
// get first name, last name, and age from user
|
|
|
|
// display first name, last name, and age on one line - use a string template
|
|
|
|
// display first name, last name, and age on two lines - use the + operator
|
|
</script>
|
|
</body>
|
|
</html> |