-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi1.html
More file actions
32 lines (25 loc) · 813 Bytes
/
api1.html
File metadata and controls
32 lines (25 loc) · 813 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
async function getusers() {
let responce = await fetch('https://jsonplaceholder.typicode.com/posts/')
let data = await responce.json()
return data
}
async function getData(){
let users = await getusers()
console.log(users)
let data = await fetch('https://jsonplaceholder.typicode.com/posts/1')
let responce = await data.json()
console.log(responce)
}
getData()
</script>
</body>
</html>