[20220330 W]
*memo
propstype
storybook
hook (if you need it, make it first)
8 to 17 work
20 clarisse(call)
review
export deffunction usePageHeader(){
const [height, setHeight] = useState(0);
const ref = useRef();
useEffect(()=>setHeight(ref.current.offsetHeight || 0))
return {ref, height};
}
반복되는 거 중복되는 거 훅처리
import use~ from ;
okay....if I make useFetch hook...
export default function useFetch(){
const [data, setData ] = useState([]);
useEffect(()=>{
fetch(url)
.then(res => res.json())
.then(data=> setData(data))
}, [url]
)
return data
}
const 필요한 값 = useFetch(url 값 넣기)
필요한 값 사용~
operators
literal statement
표현식: 값으로 평가될 수 있는 문
1)arithmetic operator
console.log(5 ** 2); // 25 => math.pow(5,2)
number + string => string
2)unary operators
+,-,!
3)assignmnet operators
c +=10 c -=10 c *=10 c **=10
4)increment/decrement operators
a++ (calculate first)
++a (calculate last)
relational operators
equality operators
value, type
Author And Source
이 문제에 관하여([20220330 W]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@devbit4/20220321-W저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)