<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
</style>
</head>
<body>
<a href="#" class="pop">클릭하여 페이지 열기</a>
<script>
$(document).ready(function () {
let a = [1,2,3,4,5,6];
let b = a.filter(a => a % 2 === 0); // a 배열을 순환하면서 2 나눈값인 0이여서 true 값이 반환된 배열값만 산출해줌
let c = a.filter(function(data){ // a 배열을 순환하면서 2 나눈값인 0이여서 true 값이 반환된 배열값만 산출해줌
return data % 2 === 0 ? true : false;
});
let d = a.filter((data)=>{ // a 배열을 순환하면서 2 나눈값인 0이여서 true 값이 반환된 배열값만 산출해줌
return data % 2 % 2 === 0 ? true : false;
})
console.log(b); //[2,4,6]
console.log(c); //[2,4,6]
console.log(d); //[2,4,6]
});
</script>
</body>
</html>