If you are a web developer who prefers to code in JavaScript, then I bet you must have somewhere heard or probably used the word "destructuring". It's very frequently used term when you are specifically writing your code in React.js or Angular. As it's a common returning pattern for React Hooks.
const [count, setCount] = useState<number>(0);