Commit 3b4ca672 authored by Pavel Mishakov's avatar Pavel Mishakov

Merge branch '#1' into 'main'

#1 - created a function that returns last messages

Closes #1

See merge request !1
parents d60540e3 035c375a
<!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 src="index.js"></script>
</body>
</html>
\ No newline at end of file
const getlastMessages = async() => {
try {
const response = await fetch('http://146.185.154.90:8000/messages')
const messages = await response.json()
console.log(messages)
return messages
} catch(err) {
console.log(err)
}
}
console.log(getlastMessages())
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment