Programando na maior parte do tempo js
var digaOi = function(nome) { alert("Oi "+ nome); } digaOi("Enieber");
http://es6-features.org
const digaOi = (nome) => alert(`Oi ${nome}`); digaOi("Enieber");
[1, 2].includes(3); // [1, 2, 3]
4 ** 4 // 256
http://2ality.com/2017/02/ecmascript-2018.html
async function () { try { const resposta = await fetch('http://enieber.com.br/dev-nortao.json'); const json = respost.json(); console.log(json) } catch(err) { console.log(err) } }
By Enieber Cunha
My name is Enieber Cunha and I living in Brazil. I am developer JS and Android and in love for User Exprience, functional programming and classical music.