sphereIdx = (sphereIdx + 1) % spheres.length;
const spheres = ['a', 'b', 'c']; // 길이 3
let sphereIdx = 2;
sphereIdx = ( sphereIdx + 1 ) % spheres.length; // 결과:0 (3 % 3 = 0)
console.log(sphereIdx); // 0
sphereIdx = (sphereIdx + 1);
const spheres = [ 'a', 'b', 'c' ]; // 길이 3
let sphereIdx = 2;
sphereIdx = (sphereIdx + 1); // 결과: 3
console.log(sphereIdx); // 3 (리스트의 유효한 인덱스 범위를 벗어남)
eslint 무시하기 (0) | 2024.12.06 |
---|---|
prop-type 팩키지 정리 - PropTypes (3) | 2024.11.28 |
requestPointerLock() (0) | 2024.11.21 |
display="", display="block" (0) | 2024.11.21 |
join(), splite() (4) | 2024.11.21 |