SlideShare a Scribd company logo
w w w. l a m b d a 3 . c o m . b r
Async e Await
entenda e use agora!
Giovanni Bassi
• Programador
• MVP
• Não gerente
• Trouxe a Scrum.org, PSM e PSD pro Brasil
• blog.lambda3.com.br, podcast.lambda3.com.br,
dotnetarchitects.net, nodebr, dockersp
• @giovannibassi
• Escalador e ciclista
Async e await com JavaScript: entenda e use agora
podcast.lambda3.com.br
0 – Eventos
1 – Docker
2 – .NET Core RC2
3 – Git
4 – Estudo
5 – Open Source
6 – Xamarin
7 – Node.js
8 – Democracia organizacional
9 – O programador poliglota
...
Toda semana em:
Async e await com JavaScript: entenda e use agora
Callbacks
Promises com bibliotecas
(q, bluebird, etc)
Promises e Generators
Async/Await
EcmaScript 1
(ES1 - 1997)
2010
EcmaScript 2015 (ES6)
EcmaScript 2017 (ES8)
Function Expressions
EcmaScript 3
(ES3 - 1999)



Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora



function* fibonacci() {
let [fn1, fn2] = [0, 1];
while (true) {
yield fn1;
[fn1, fn2] = [fn2, fn2 + fn1];
}
}
for (const n of fibonacci()) {
if (n === 927372692193079200000) break;
process.stdout.write(`${n} `);
}
Async e await com JavaScript: entenda e use agora






Async e await com JavaScript: entenda e use agora






Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora


Async e await com JavaScript: entenda e use agora
async function f1(){
await f3();
}


const f3 = async() => await f2;
const f2 = async function (){
await f1();
}


Async e await com JavaScript: entenda e use agora


Async e await com JavaScript: entenda e use agora


Async e await com JavaScript: entenda e use agora
Async e await com JavaScript: entenda e use agora
 tc39.github.io/ecma262/2017/#sec-async-function-definitions
 github.com/tc39/ecmascript-asyncawait
 github.com/giggio/asyncawaitsamples
w w w. l a m b d a 3 . c o m . b r
Dúvidas?
w w w. l a m b d a 3 . c o m . b r
Obrigado!

More Related Content

PPTX
.NET Core, ASP.NET Core e .NET Standard 2
POTX
Me interessei por Xamarin, e agora?
PPTX
Desenvolvimento .NET no Linux. Veja porque a Microsoft ama Linux e Open Source
PDF
Dsl로 만나는 groovy
PDF
Introducing CentOS container pipeline
PDF
How we do python
PPTX
Advantages of Python Learning | Why Python
ODP
Jakarta js meetup kudo
.NET Core, ASP.NET Core e .NET Standard 2
Me interessei por Xamarin, e agora?
Desenvolvimento .NET no Linux. Veja porque a Microsoft ama Linux e Open Source
Dsl로 만나는 groovy
Introducing CentOS container pipeline
How we do python
Advantages of Python Learning | Why Python
Jakarta js meetup kudo

What's hot (11)

PDF
Cf news april june 2017
PDF
Retro Gaming with Raspberry PI
PDF
Git by example
ODP
CI and other tools for feature branch development
PDF
Reactive Programming by UniRx for Asynchronous & Event Processing
PDF
Quick Review of Desktop and Native Apps using Javascript
ODP
Qt Creator, l'arma segreta!
PPTX
Meetup #27 Azure Web Apps
PDF
自分戦略
PPTX
.ASP NET CORE ON DOCKER
PPTX
Knowit study group örnsköldsvik - introduction to qt & qt creator
Cf news april june 2017
Retro Gaming with Raspberry PI
Git by example
CI and other tools for feature branch development
Reactive Programming by UniRx for Asynchronous & Event Processing
Quick Review of Desktop and Native Apps using Javascript
Qt Creator, l'arma segreta!
Meetup #27 Azure Web Apps
自分戦略
.ASP NET CORE ON DOCKER
Knowit study group örnsköldsvik - introduction to qt & qt creator
Ad

Viewers also liked (19)

PPTX
ASP.NET vNext no .NET Architects Days 2014
PPTX
Engenharia ágil de ponta a ponta do clone ao deploy
PPTX
Backend na nuvem com docker
PPTX
Quando agile falha, segundo o PMI
PPTX
Docker no Azure
PDF
ASP.NET Core com Linux, Docker e Azure
PDF
Comunicando com efetividade com Comunicação não violenta
PPTX
TFS REST API e Universal Apps
PPTX
Entrega contínua fica mais fácil com contêineres
PDF
Conheça a nova arquitetura do compilador do C# (DNAD 2015)
PPTX
Por dentro do .NET Core
PPTX
Conhecendo, explorando e usando azure container service
PPTX
Build e release pipeline com docker
PPTX
Compartilhando código entre frontend e backend com Node.js
PPTX
.NET com contêineres Windows e Linux
PPTX
Release contínuo de um microsserviço com Docker ASP.net core e Azure Containe...
PDF
Um mergulho nos containers windows
PPTX
Construindo uma ferramenta CLI multiplataforma com Node.js
PDF
O Futuro do C#: C#8
ASP.NET vNext no .NET Architects Days 2014
Engenharia ágil de ponta a ponta do clone ao deploy
Backend na nuvem com docker
Quando agile falha, segundo o PMI
Docker no Azure
ASP.NET Core com Linux, Docker e Azure
Comunicando com efetividade com Comunicação não violenta
TFS REST API e Universal Apps
Entrega contínua fica mais fácil com contêineres
Conheça a nova arquitetura do compilador do C# (DNAD 2015)
Por dentro do .NET Core
Conhecendo, explorando e usando azure container service
Build e release pipeline com docker
Compartilhando código entre frontend e backend com Node.js
.NET com contêineres Windows e Linux
Release contínuo de um microsserviço com Docker ASP.net core e Azure Containe...
Um mergulho nos containers windows
Construindo uma ferramenta CLI multiplataforma com Node.js
O Futuro do C#: C#8
Ad

Similar to Async e await com JavaScript: entenda e use agora (20)

PDF
Analisando dumps de memória de aplicações .NET
PPTX
Kiss.ts - The Keep It Simple Software Stack for 2017++
PPTX
C#: Past, Present and Future
DOCX
Kunal bhatia resume mass
PPTX
Monkey space 2013
PPTX
Mini .net conf 2020
PPTX
PUG Challenge 2016 - The nativescript pug app challenge
PPTX
From .NET Core 3, all the rest will be legacy
PDF
Tips and Tricks for Swift & Dot Swift 2016
PDF
How to build a social network on serverless
PPTX
JSLounge - TypeScript 소개
PPTX
Developing apache spark jobs in .net using mobius
PPTX
Novidades do c# 7 e 8
PDF
How to build a social network on Serverless (AWS Community Summit)
PDF
How to build a social network on serverless | Yan Cui
PDF
SC20 SYCL and C++ Birds of a Feather 19th Nov 2020
PPTX
Mobile, Open Source, and the Drive to the Cloud
PPTX
Mobile, Open Source, & the Drive to the Cloud
PDF
How we dockerized a startup? #meetup #docker
PDF
Build Great Networked APIs with Swift, OpenAPI, and gRPC
Analisando dumps de memória de aplicações .NET
Kiss.ts - The Keep It Simple Software Stack for 2017++
C#: Past, Present and Future
Kunal bhatia resume mass
Monkey space 2013
Mini .net conf 2020
PUG Challenge 2016 - The nativescript pug app challenge
From .NET Core 3, all the rest will be legacy
Tips and Tricks for Swift & Dot Swift 2016
How to build a social network on serverless
JSLounge - TypeScript 소개
Developing apache spark jobs in .net using mobius
Novidades do c# 7 e 8
How to build a social network on Serverless (AWS Community Summit)
How to build a social network on serverless | Yan Cui
SC20 SYCL and C++ Birds of a Feather 19th Nov 2020
Mobile, Open Source, and the Drive to the Cloud
Mobile, Open Source, & the Drive to the Cloud
How we dockerized a startup? #meetup #docker
Build Great Networked APIs with Swift, OpenAPI, and gRPC

More from Giovanni Bassi (10)

PPTX
O que aprendi montando a arquitetura de microsserviços
PPTX
Sendo ágil com git
PPTX
Async e await com JavaScript: entenda e use agora
PPTX
Conhecendo o AKS, o azure container services com kubernetes
PPTX
Novidades do .NET Core 2.1 e do ASP.NET Core 2.1
PPTX
C#7, 7.1, 7.2, 7.3 e C# 8
PPTX
Apresentando o EcmaScript 6
PPTX
Introdução ao NodeJS
PDF
Brownbag: To sell is human
PPTX
É fácil ser ágil usando .NET
O que aprendi montando a arquitetura de microsserviços
Sendo ágil com git
Async e await com JavaScript: entenda e use agora
Conhecendo o AKS, o azure container services com kubernetes
Novidades do .NET Core 2.1 e do ASP.NET Core 2.1
C#7, 7.1, 7.2, 7.3 e C# 8
Apresentando o EcmaScript 6
Introdução ao NodeJS
Brownbag: To sell is human
É fácil ser ágil usando .NET

Recently uploaded (20)

PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
PDF
Empathic Computing: Creating Shared Understanding
PPTX
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Sensors and Actuators in IoT Systems using pdf
PDF
Advanced IT Governance
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
KodekX | Application Modernization Development
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
GamePlan Trading System Review: Professional Trader's Honest Take
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
Cloud computing and distributed systems.
PDF
Chapter 2 Digital Image Fundamentals.pdf
Review of recent advances in non-invasive hemoglobin estimation
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
Empathic Computing: Creating Shared Understanding
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
Advanced methodologies resolving dimensionality complications for autism neur...
Chapter 3 Spatial Domain Image Processing.pdf
MYSQL Presentation for SQL database connectivity
Sensors and Actuators in IoT Systems using pdf
Advanced IT Governance
Reach Out and Touch Someone: Haptics and Empathic Computing
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
KodekX | Application Modernization Development
Spectral efficient network and resource selection model in 5G networks
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
GamePlan Trading System Review: Professional Trader's Honest Take
Diabetes mellitus diagnosis method based random forest with bat algorithm
Cloud computing and distributed systems.
Chapter 2 Digital Image Fundamentals.pdf

Async e await com JavaScript: entenda e use agora