Skip to content

Instantly share code, notes, and snippets.

@joebartels
Last active August 29, 2015 14:21
Show Gist options
  • Save joebartels/38dac88cd4004dfde1c0 to your computer and use it in GitHub Desktop.
Save joebartels/38dac88cd4004dfde1c0 to your computer and use it in GitHub Desktop.
interview questions
1. if you had all the free time in the world what are 2 projects, languages, products, softwares, tech. ideas you'd want to work on?
2.
*write this more succintly*
```javascript
if (!status) {
return false;
} else if (status !== 'off) {
return false;
} else {
return true;
}
```
*write a function that puts underscores between letters of a word*
```
"javascript" -> "j_a_v_a_s_c_r_i_p_t"
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment