강의

멘토링

커뮤니티

Inflearn Community Q&A

mozzisoft6620's profile image
mozzisoft6620

asked

Life Coding - JavaScript Basics

Object-Oriented Programming

function오류

Written on

·

381

0

function 쪽이 자꾸오류가납니다 .. 단어를 똑같이적었는데도요!! 

'show' : function(){

for(var name in this.li) {

console.log(ma,e. this.li[name]);

javascript

Answer 1

0

for(var name in this.li) {

// var name 을 사용했는데 밑에는 ma라고 되어있고

// e. <--은 선언된곳이 없는데 들어가 있는거 같습니다.

console.log(ma,e. this.li[name]);

mozzisoft6620's profile image
mozzisoft6620

asked

Ask a question