일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 리액트
- JavaScript
- 백준
- 자바스크립트
- vanillaJS
- 프로그래머스 자바
- 코틀린
- websocket
- 자바 공부
- react firebase
- 장고
- 프로그래머스 완전탐색
- 프로그래밍 언어론
- codesandbox
- React JS
- NextJS
- 컴퓨터 네트워크
- 디자인 패턴
- useState
- 데이터모델링과마이닝
- 코딩테스트 고득점 Kit
- 프로그래머스
- design pattern
- useEffect
- Java
- 코딩테스트 고득점 Kit 완전탐색
- 리액트 훅
- react
- 자바
- react hook
Archives
- Today
- Total
목록코틀린 range (1)
기록하는 개발자
Kotlin(코틀린)(Intelli J) #2 반복문, 범위 표현
1. For 문 #item, in 을 통한 반복문 1 2 3 4 5 val fruit=listOf("apple","banana","kiwi") for(item in fruit){ println(item) } http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter #list의 데이터를 indices로 접근 ${fruit[0]}=apple ${fruit[1]}=banana ${fruit[2]}=kiwi 1 2 3 4 val fruit=listOf("apple","banana","kiwi") for(index in fruit.indices){ //using ..
Kotlin
2020. 1. 19. 16:42