async/await as IIFE

devfish·2023년 2월 3일
0

Javascript

목록 보기
24/30

Example of utilizing IIFE (Immediately Invoked Function Expressions)

The above is better than below!

  useEffect(() => { ///문자열 '' -> false
    setIsLoading(true);
    (async () => {
      const result = await getFlight(condition);
      setFlightList(result);
      setIsLoading(false);
    })();

    // async function updateFlightFilter(){
    //   const result = await getFlight(condition);
    //   setFlightList(result);
    //   setIsLoading(false);
    // }
    // updateFlightFilter();
  }, [condition]);
profile
la, di, lah

0개의 댓글