Skip to content

Instantly share code, notes, and snippets.

@emamut
Created February 27, 2016 04:58
Show Gist options
  • Save emamut/9e2f86f5c151913aecee to your computer and use it in GitHub Desktop.
Save emamut/9e2f86f5c151913aecee to your computer and use it in GitHub Desktop.
Refactorizando código o el arte de simplificar - normal.js
function get_first_element(the_array) {
if (the_array instanceof Object)
return the_array[0];
else
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment