Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 미래내일일경험
- 디지털하나로입학식
- 디지털취업
- `
- 유데미
- Next.js
- 웅진씽크빅
- kdt
- 개발자교육과정
- udemy
- github
- 부트캠프
- 디지털교육
- 백틱
- DIGITALHANARO
- 프론트엔드배포
- 프로젝트캠프
- 깃허브 레포지토리와 로컬 코드 연결하기
- 스나이퍼팩토리
- 네이버로그인창만들기
- 맥북백틱입력
- 맥북백틱
- 배포
- 취준생
- 프론트엔드개발자양성과정
- 버전생성프로세스
- s3
- 하나은행
- 디지털하나로
Archives
- Today
- Total
Land of Joe
[JavaScript] function 문법 본문
함수명 작명은 구체적으로.
영문작명시 camelCase 방법을 따르는 것이 관습임.
- 소문자로 시작
- 여러 단어를 합친 이름일 경우 띄어쓰기X 언더바(_)X
- 단어의 첫 알파벳만 대문자 사용
- (ex) openModal, closeModal
function openModal(){
document.getElementById('alert').style.display='block';
}
function closeModal(){
document.getElementById('alert').style.display='none';
}
parameter 파라미터 문법
function modal(구멍){
document.getElementById('alert').style.display=구멍;
}
modal('block'), modal('none')
'🌐 Web > 🟡 JavaScript' 카테고리의 다른 글
[JavaScript] localStorage API (0) | 2023.05.07 |
---|---|
[JavaScript] 셀렉터 종류 (0) | 2022.11.23 |
[JavaScript] 문자 중간에 변수 넣기(백틱) (0) | 2022.10.18 |
[JavaScript] 이벤트 버블링 (0) | 2022.10.12 |
[JavaScript] 탭 기능 구현하기, for 반복문 (0) | 2022.10.11 |