Posts by Bruno Henrique • 21 points
3 posts
-
0
votes2
answers940
viewsA: File import and read
Another way would also be to use handmade Bulkinsert, a generic method that reads the properties and mounts a super fast Insert... It has a github repository that contains two very useful methods…
-
1
votes3
answers216
viewsA: How does date comparison work using . toLocaleDateString();?
Unfortunately javascript does not have native support (but why?) for comparisons between dates, as @Vinícius mentioned: strings are compared one by one and in order to get differences between dates…
javascriptanswered Bruno Henrique 21 -
1
votes5
answers10050
viewsA: Run script js when trying to close the window
The listening Unload is already deprecated (was removed in version 3.0+ of Jquery), the most recommended method is the unbeforeunload that occurs when you press F5, CTRL+F5, click on a hyperlink or…