Posts by brunoksato • 81 points
2 posts
-
1
votes1
answer56
viewsQ: Problem with TFS and Gulp
When I use Gulp with TFS I have problems executing Gulp commands: TFS when checking the files, it locks the actions of Gulp, not letting it read the files checked by TFS. My solution is to give Edit…
-
7
votes6
answers27772
viewsA: When, why and how to use the "use Strict" directive in Javascript?
'use Strict' is used to expose exceptions to your javascript code, seeing errors in more detail Example function isStrictMode(){ return !this; } //retorna falso, uma vez que "this" se refere ao…