> For the complete documentation index, see [llms.txt](https://april.gitbook.io/learning-js/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://april.gitbook.io/learning-js/chapter-5./expression.md).

# 표현식 (Expression)

* 값으로 평가될 수 있는 문
* 무언가를 요청하는 것이라고 생각할 수 있음
* 결과를 명시적으로 반환함
* 표현식은 값이 되므로 할당에 쓸 수 있음 (표현식의 결과를 변수, 상수, 프로퍼티에 할당 가능)

### **1) 식별자 표현식 (변수와 상수 이름)**

### **2) 리터럴 표현식**

```javascript
let x, y;
 
y = x = 3 * 5; // 곱셈 표현식
 
y = x = 15; // 첫번째 할당 (x = 15)
 
y = 15; // 두번째 할당 ( y = 15)
```
