1
2
3
4
5
6
7
            $("#certification")[0].oninvalid = function () {
              this.setCustomValidity("계정인증을 진행해 주세요.");
            }
 
            $("#certification")[0].oninvalid = () => {
             this.setCustomValidity("계정인증을 진행해 주세요.");
            }
cs

이 두개 차이가 있는건가요?