split() 을 사용하면 잘린 것들은 배열로 들어갑니다.
arr = myEmail.split('@');
alert(arr[1]);

+ Recent posts