Kuis materi useRef di React — uji pemahamanmu dengan pertanyaan pilihan ganda, penjelasan jawaban, dan skor langsung. Main gratis di Hyper Sheets.
const inputRef = useRef(null);
function handleClick() { inputRef.___.___ (); }const countRef = useRef(0);
function handleClick() {
countRef.current++;
console.log(countRef.current);
}