Skip to content

Instantly share code, notes, and snippets.

View andreleite's full-sized avatar

André Leite andreleite

View GitHub Profile
console.clear();
var string = 'opcon4';
function changeString(string) {
string = 'opcon1';
console.log('inside', string);
}
changeString(string);