프론트엔드

WEB/JavaScript

[JavaScript] 객체 메소드(Object methods)

객체 메소드 1. Object.assign() 객체 복제 user를 복사하고 싶다고 그냥 cloneUser에 대입해서 될까? const user = { name : 'susukkang', age : 30 } const cloneUser = user; 답은 '아니다' user 변수에는 객체 자체가 들어가 있는 것이 아니라, 객체가 저장되어 있는 메모리 주소인 객체에 의한 참조값이 저장된다. 그러므로 cloneUser에는 데이터가 들어가지않고 참조값이 들어간다. Object.assign() 사용 const newUser = Object.assign({}, user); 이렇게 사용해야 newUser에 user의 값들이 복제된다. 병합1 const newUser2 = Object.assign({gender:'f..

카테고리 없음

[Alpine.js] Alpine.js 시작하기

Alpine.js🔎 HTML에 인라인 JavaScript를 사용하여 간단한 인터랙티브 웹 애플리케이션을 만들 수 있도록 도와주는 라이브러리이다. 알파인.js는 가벼우면서도 강력한 기능을 제공하며, 다른 복잡한 프론트엔드 프레임워크나 라이브러리에 비해 진입 장벽이 낮다. 공식 사이트에 사용방법이 매우 잘 나타나 있다. 공식 사이트 : https://alpinejs.dev/start-here Start Here — Alpine.js Start Here Create a blank HTML file somewhere on your computer with a name like: i-love-alpine.html Using a text editor, fill the file with these contents: ..

developer of the night sky
'프론트엔드' 태그의 글 목록