const obj = {a:0, b:1}; const { a, b } = obj; // これは以下のものと同様です // const a = obj.a; // const b = obj.b; class Data(val firstName: String, val lastName: String, val age: Int, val sex: Int){ operator fun component1() = firstName operator fun component2() = lastName operator fun component3() = age operator fun component4() = sex }
![Kotlinの分解宣言を使うとJavaScriptの分割代入っぽく書けるよ](https://cdn-ak-scissors.b.st-hatena.com/image/square/a0f1f27e0b26f888e9b5c68ad040ed06010d3118/height=288;version=1;width=512/https%3A%2F%2Ffanyv88.com%3A443%2Fhttps%2Fres.cloudinary.com%2Fzenn%2Fimage%2Fupload%2Fs--2I1vY46s--%2Fc_fit%252Cg_north_west%252Cl_text%3Anotosansjp-medium.otf_55%3AKotlin%2525E3%252581%2525AE%2525E5%252588%252586%2525E8%2525A7%2525A3%2525E5%2525AE%2525A3%2525E8%2525A8%252580%2525E3%252582%252592%2525E4%2525BD%2525BF%2525E3%252581%252586%2525E3%252581%2525A8JavaScript%2525E3%252581%2525AE%2525E5%252588%252586%2525E5%252589%2525B2%2525E4%2525BB%2525A3%2525E5%252585%2525A5%2525E3%252581%2525A3%2525E3%252581%2525BD%2525E3%252581%25258F%2525E6%25259B%2525B8%2525E3%252581%252591%2525E3%252582%25258B%2525E3%252582%252588%252Cw_1010%252Cx_90%252Cy_100%2Fg_south_west%252Cl_text%3Anotosansjp-medium.otf_37%3AKanon%252Cx_203%252Cy_121%2Fg_south_west%252Ch_90%252Cl_fetch%3AaHR0cHM6Ly9zdG9yYWdlLmdvb2dsZWFwaXMuY29tL3plbm4tdXNlci11cGxvYWQvYXZhdGFyLzM1OTY4ZjJmNWUuanBlZw%3D%3D%252Cr_max%252Cw_90%252Cx_87%252Cy_95%2Fv1627283836%2Fdefault%2Fog-base-w1200-v2.png)