Skip to content

Instantly share code, notes, and snippets.

View alex-roc's full-sized avatar
🤖
Working

Alex Ojeda Copa alex-roc

🤖
Working
View GitHub Profile
@alex-roc
alex-roc / mapa-vallevivo.geojson
Created September 3, 2025 02:24
Mapa Valle Vivo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@alex-roc
alex-roc / fetch.js
Last active February 20, 2024 21:05
fetch
const btnEl = document.querySelector(".btn");
const cklickHandler = () => {
fetch("https://regres.in/api/users")
.then(res => {
return res.json();
})
.then(data
=> {
console.log(data.data[3].firstname);
})