본문 바로가기

Typescript & React

Typscript 문법 오류

728x90

에러 현상

Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions 

 

할당 또는 함수 호출이 예상되었으나 표현식이 나왔다 @타입스크립트 사용하지 않는 expression이 나왔다. 

const setCookie = (name: string, value: string, day: number) => {
    let today = new Date();
    today.setDate(today.getDate() + day);
    document.cookie = name + "=" + value + "; path=/; expires=" + today.toUTCString();📌 + ";"    
  }

 

문법적 오류로 인해 할당도 되지 않고 적절한 함수 표현식으로 작성되었다. 

 

728x90