Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 229 Bytes

optional-catch-binding.md

File metadata and controls

19 lines (16 loc) · 229 Bytes

Optional Catch Binding

  • ES10에서는 try..catch 문에서의 catch내 인자를 optional하게 바인딩 가능
// Before
try {
   ...
} catch(error) {
   ...
}
// After
try {
   ...
} catch {
   ...
}