최근 포스트

[JavaScript] new operator

```javascript function Car(make, model, year) { this.make = make; this.model = model; this.year = year; }