# assignment
[사전 스터디 Week 3] JavaScript array methods
JavaScript - array methods, Array.map(), Array.forEach() / Assignment 풀이
[사전 스터디 Week 3] JavaScript [ES6] arrow function, template literals, string method
JavaScript ES6 - arrow function, template literals, string method / Assignment 풀이
[사전 스터디 Week 1] Semantic Web, Semantic Tag, <img> 태그와 background-image 속성
HTML - Semantic Web, Semantic Tag, <img>, background-image

값의 할당(assignment)
값을 할당 할 때에는 할당 연산자인 =를 사용한다. 할당 연산자는 우변의 값을 좌변의 변수에 할당한다.변수 선언과 값의 할당을 2개의 문으로 나누어 표현한 코드와 변수 선언과 값의 할당을 하나의 문으로 단축 표현한 코드는 정확히 동일하게 작동한다.즉, 자바스크립트 엔진

[드림코딩 JS 마스터리] 연산자(expressions, arithmetic, unary, assignment, increment, relational, priority, equality)
드림코딩 JS 마스터리 TIL - 연산자
20220510-TIL
Assignment그 동안 배운 것을 정리할겸 아래의 사이트에서 학습을 완료해주세요.http://learnlayout.com/https://poiemaweb.com/css3-layouthttps://poiemaweb.com/css3-box-m

How import statement finds modules and packages
1. sys.modules 와 sys.path의 차이점 > 파이썬에서 모듈/패키치 찾는 순서 sys.modules > built-in modules > sys.path sys.modules dictionary 구조 파이썬이 가장 먼저 모듈이나 패키지를 찾음 sys.path list 구조 가장 마지막에 모듈과 패키지를 찾음 여기서 못찾을 ...
dictionary
1. Set과 Dictionary 공통점 중복 불가능 차이점 set은 key값만 존재 dictionary는 key : value의 구조 2. List와 Tuple의 차이 공통점 다른 type의 데이터를 담을 수 있다. (int, float, str ...) iterable 차이점 list는 변경가능하지만, tuple은 변경 불가

Function Parameters
Function Parameters앞서 함수는 input parameter를 받아서 return 값을 output으로 리턴한다고 배웠습니다. 그리고 함수를 호출할때 parameter를 함수에 건내주어서(pass) 호출 한다고 배웠습니다. 함수의 parameter에는 여
Python 기초 문법
escaping과 print 함수 print() 함수는 따옴표를 생략하고, 이스케이핑된 특수 문자를 출력해서 더 읽기 쉬운 출력을 만들어 낸다. string concatenation, 문자열 연산 두 개 이상의 문자열 리터럴이 연속해서 나타나면 자동으로 이어붙여진다.

최소값(min), 최대값(max)을 범위로 한 랜덤숫자 구하기
📝 Math.random() 을 이용해서 min ~ max 사이의 랜덤한 숫자 구하기