콤마(Commas)
콤마(Commas)Leading commas: Nope.선두의 콤마 하지마요// bad const story = [ once , upon , aTime ]; // good const story = [ once, upon, aTime, ]; // bad const hero = { firstName: 'Ada' , lastName: 'Lovelace' , birthYear: 1815 , superPower: 'computers' }; // good const hero = { firstName: 'Ada', lastName: 'Lovelace', birthYear: 1815, superPower: 'computers', };Additional trailing comma: Yup.끝의 콤마 좋아요Why? Thi..