// 빈 객체 배열 생성 const peopleArray = []; // 객체 추가 peopleArray.push({ name: 'Alice', age: 30, occupation: 'Engineer' }); peopleArray.push({ name: 'Bob', age: 25, occupation: 'Designer' }); peopleArray.push({ name: 'Charlie', age: 40, occupation: 'Manager' }); console.log(peopleArray);
숫자 배열 정렬 예시: let arr = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5]; arr.sort((a, b) => a - b); // 오름차순 정렬 console.log(arr); arr.sort((a, b) => b - a); // 내림차순 정렬 console.log(arr); 문자열 배열 정렬 예시: let arr = ["banana", "apple", "orange", "grape"]; arr.sort(); // 알파벳 순서로 정렬 (기본적으로 오름차순) console.log(arr); arr.sort((a, b) => b.localeCompare(a)); // 알파벳 역순으로 정렬 (내림차순) console.log(arr); 사용자 정의 객체 배열 정렬 예시: (숫자) //..
클릭 후 이동 // 이동 가능한 div 요소 선택 const movableDiv = document.getElementById('movableDiv'); // 이동 가능한 상태를 저장하는 변수 let isMovable = false; // div를 클릭할 때 호출되는 이벤트 리스너 movableDiv.addEventListener('mousedown', function(event) { isMovable = true; // 이동 가능한 상태로 설정 offsetX = event.clientX - movableDiv.offsetLeft; offsetY = event.clientY - movableDiv.offsetTop; }); // div를 놓을 때 호출되는 이벤트 리스너 document.addEventLi..
append(): Inserts the specified content as the last child of the target element. prepend(): Inserts the specified content as the first child of the target element. after(): Inserts the specified content immediately after the target element. before(): Inserts the specified content immediately before the target element. // Add an element using append() $(targetElementSelector).append('This is a ne..
function formatProductCode(input) { // Remove any non-alphanumeric characters from the input value let productCode = input.value.replace(/[^a-zA-Z0-9]/g, ''); // Format the product code as desired (e.g., jh-h-09-09) let formattedProductCode = productCode.replace(/([^A-Za-z]{2})([^A-Za-z])(\d{1,2})(\d{1,2})/, (match, p1, p2, p3, p4) => p1.toUpperCase() + '-' + p2.toUpperCase() + '-' + p3 + '-' + ..
// Create a new option element. var option = document.createElement("option"); // Set the text and value properties of the option element. option.text = "Option Text"; option.value = "Option Value"; // Append the option element to the select element. var select = document.getElementById("mySelect"); select.appendChild(option);
$("input[type='checkbox']").is(":checked") // This method will return a boolean value, indicating whether or not the checkbox is checked. $("input[type='checkbox']").prop("checked") // This method will return the value of the checked property of the checkbox, which is a boolean value.
const selectedDate = new Date($("#txt_new_warehouse_in_Date").val()); var currentDate = new Date($("#txt_warehouse_in_Date").val()); // current date // 비교 연상자가 시간까지 계산식에 포함시기 때문에 시간을 0으로 설정 currentDate = new Date(currentDate.getFullYear(), currentDate.getMonth(), currentDate.getDate(), 0, 0, 0, 0); let pastDate = new Date(currentDate.getTime() - (5 * 24 * 60 * 60 * 1000)); let futureDate = new D..
- Total
- Today
- Yesterday
- java web-mvc
- java 키워드 정리
- system.io
- 상품 등록
- 진수 변환
- .submit()
- 제품 등록
- jstl(java standard tag library)-core
- java.sql
- 문자 자르기
- 특정 문자를 기준으로 자르기
- error-java
- await
- 람다식(lambda expression)
- System.Diagnostics
- 인텔리제이(intellij)
- 스프링 프레임워크(spring framework)
- In App Purchase
- nl2br
- REST API
- 표현 언어(expression language)
- 스프링 시큐리티(spring security)
- java-개발 환경 설정하기
- 스프링 프레임워크(spring framewordk)
- jsp 오픈 소스
- 스프링 시큐리티(spring security)-http basic 인증
- React
- 메이븐(maven)
- MainActor
- jstl(java standard tag library)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |