Definitely, TypeScript is very better for JavaScript projects, it has many benefits and one of them are typed variables, also arrow functions are awesome:
const arFunc = ({ n, m }) => console.log(`${n + m + 1}`);
The above code is a JavaScript simple arrow function with destructing assignment. but I cannot understand the implementation of it on TypeScript. it is so complicated and confused me.
Assignment type of interanced variables and outputted results. this is my desire.