10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
import fetch from "node-fetch";
|
|
|
|
const response = await fetch("https://www.carousell.com.hk/p/1253932419/", {
|
|
headers: {},
|
|
method: "GET",
|
|
});
|
|
const body = await response.status;
|
|
|
|
console.log(body);
|