Skip to content

Instantly share code, notes, and snippets.

View mariorodeghiero's full-sized avatar
:electron:
Working from home

Mario Rodeghiero mariorodeghiero

:electron:
Working from home
View GitHub Profile
@mariorodeghiero
mariorodeghiero / question-interview-3
Last active August 19, 2018 22:19
Front-end Interview
let word = "Hello world !"
function ReadWord(str) {
return str.split('').reverse().join('');
}
ReadWord(word);
@mariorodeghiero
mariorodeghiero / question-interview-2
Last active August 19, 2018 22:19
Front-end Interview
const arr = [10, 12, 15, 21];
for (var i = 0; i < arr.length; i++) {
setTimeout(function() {
console.log('Index: ' + i + ', element: ' + arr[i]);
}, 3000);
}
@mariorodeghiero
mariorodeghiero / question-interview-1
Last active August 19, 2018 14:03
Front-end Interview
var foo = 10 + '20';
console.log(!isNaN(foo));
@mariorodeghiero
mariorodeghiero / README-Template.md
Created November 14, 2017 00:48 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites