Example 1: usememo hook react const [a, setA]=useState(0); const [b, setB]=useState(0); const pow=(a)=>{ return Math.pow(a, 2); } var val= useMemo(()=>{ ...
確定! 回上一頁