프론트엔드-코드 237

객체 메소드 (객체 <-> 배열 변환 등등등)

const userProperty1 = makeObj('name', 'jone'); const userProperty2 = makeObj('age', 40); const user = Object.assign({},userProperty1, userProperty2); console.log(user); function makeObj(key, value){ return { [key] : value } } Object.assign((넣을곳), 합칠객체1,합칠객체2, 3, 4.... ) 이러면 객체가 합쳐져서 return 됨 참고로, Object.assign(userProperty1, userProperty2); console.log(userProperty1); 이렇게 하면 userProperty1안쪽으로 넣어..

색상 내장 함수

&.built-in { @include center; background-color: mix($color, red); } &.built-in 은 자신에 built-in 클래스가 있는 경우 mix(색1, 색2) 값을 섞는 건데, 둘 값의 중간값 주는 듯 background-color: lighten($color, 30%); 밝게 background-color: darken($color, 30%); 어둡게 background-color: saturate($color, 40%); 채도 높여주기 40% 높여줌 background-color: desaturate($color, 40%); 채도 감소 background-color: grayscale($color); 색생에 따라 회색 정도가 다르기에 색상 줘야 함. ..