dunder proto === __proto__
Every object in JS has this property.
It points back to the prototype object of the constructor function that created that object.
Only Object.prototype.__proto__ === null
dunder proto === __proto__
Every object in JS has this property.
It points back to the prototype object of the constructor function that created that object.
Only Object.prototype.__proto__ === null
| /* | |
| * Handling Errors using async/await | |
| * Has to be used inside an async function | |
| */ | |
| try { | |
| const response = await axios.get('https://your.site/api/v1/bla/ble/bli'); | |
| // Success 🎉 | |
| console.log(response); | |
| } catch (error) { | |
| // Error 😨 |
Estamos usando Pins para compartir, guardar y tener una forma fácil de encontrar ofertas de trabajo
Por ejemplo:
Desarrollador Full Stack en Medellín.
| #! /bin/bash | |
| echo "127.0.0.1 localhost" | sudo tee --append /etc/hosts | |
| echo "127.0.0.1" `ec2metadata --local-hostname` | sudo tee --append /etc/hosts | |
| ## Remove --append to overwrite the file |