Essential part of Javascript, every function in Javascript has context, how does it work, how does it manipulate it, and what changes in the strict mode ( 'use strict' )?
Essential part of Javascript, every function in Javascript has context, how does it work, how does it manipulate it, and what changes in the strict mode ( 'use strict' )?
I made a code to train Arrays and JavaScript manipulation. Here's part of the code:
function Playlist (nome ='Playlist'){
const musicas = [];
function addMusicas(...novasMusicas){
novasMusicas.forEach(function(musica){...
In the company I work with we use asp.net mvc divided into 2 projects:
web - (base)
service - (business rules)
In several places I've noticed other programmers using the direct context (which extends DbContext) in the services and I...
I'm developing an application and my idea is to put this application from the send to windows menu. I have already put the start of the Application la, but I can not get the file path.
Example: I have a pdf file on the Desktop the user will r...
Essential part of Javascript, every function in Javascript has context, how does it work, how does it manipulate it, and what changes in the strict mode ( 'use strict' )?