|
|
|
|
|
by robbiejs
1395 days ago
|
|
I agree. I am the creator of the data table lib datagridxl.com and I like to make my methods as flexible as possible. Example: grid.selectRows(2) // index
grid.selectRows([3,5]) // range
grid.selectRows([[1,2],[4,6]]) // multiple ranges It fits in the JavaScript spirit of "we will make it work" which I love. Other major thing that made me decide to develop in es6 instead of typescript was compilation times. After a ctrl+s it had to compile ts to js for 10 seconds, which is annoying for me, as i like to check & test every minor code change. |
|
Do you also use == and != for comparisons by default?