-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathh.js
53 lines (27 loc) · 792 Bytes
/
h.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
var express = require ('express');
var app = express();
app.get('/',function (req,res)
{
console.log(req.query.name);
res.send(`
<html>
<body>
<form action = '/home' method = get />
enter name : <input type = "text" name = "name">
enter year : <input type = "number" name = "age">
<input type = "submit" value = "submit" >
</body>
</html>
`)
});
app.get('/home',function (req,res)
{
var year = new Date();
var w = year.getFullYear() - req.query.age ;
res.send("hello world" + req.query.name + "age is " + w);
res.send(w);
});
app.listen(3000,function ()
{
console.log("hello world");
})