what's new in the web (I/O Extended 2019 ) 본문

카테고리 없음

what's new in the web (I/O Extended 2019 )

미니모아 2019. 6. 23. 09:55
반응형

크롬 업데이트 

 

portal 

멀티페이지 어플리케이션을 싱글 페이지 어플리케이션처럼 화면 전환이 자유로워지도록 해줌 

Native lazy loading 

<img loading = ?>

eager : 일반적인 방법. 무조건 로드

auto : 브라우저 자체적으로 판단해서 eager or lazy 

lazy : 206 부분적 응답 

 

Web share API 

WebAuthn 

웹에서 비밀번호없이 로그인할 수 있는 보안인증 

http://webauthn.io

 

 

 

 

js

Class private field 

_ prefix 대신 #prefix 형식상 private이 아니라 실제로 보호됨

String.prototype.matchall

Numeric seprator

BingInt

큰 수 연산이 불안정했던 자바스크립트 보완 

Bigint number 사이 변환은 손실 변환이 일어나며 서로 연산 불가 

Object.entries()

obj -> key,value 쌍으로 

 

Object.fromEntries()

Key,value -> obj

 

globalthis 

 

반응형
Comments