こんな コードがあるとして、
const theLength="Hello world".length;
最近はこうも書ける。
const {theLength:length}="Hello world"
JavaScriptの場合、StringといえどもObjectなので Object Destructuringを使えるわけ。(IE 11 は使えません。)
こんな コードがあるとして、
const theLength="Hello world".length;
最近はこうも書ける。
const {theLength:length}="Hello world"
JavaScriptの場合、StringといえどもObjectなので Object Destructuringを使えるわけ。(IE 11 は使えません。)