Skip to content

Commit

Permalink
Formating text
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanMaRuiz committed May 20, 2016
1 parent eab8062 commit 4fc02cd
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions README.md
@@ -1,26 +1,25 @@
JavaScript questions
====================

What will be logged for this functions?

**First function**

```
var foo = "Bazinga";
function myFunction() {
foo = "Kyle";
}
myFunction();
console.log(foo);
```

*Answer:*

```
Kyle
```
***What will be logged for this functions?

> **First function**
>
> ```
> var foo = "Bazinga";
>
> function myFunction() {
> foo = "Kyle";
> }
>
> myFunction();
> console.log(foo);
> ```
>
> *Answer:*
```
Kyle
```

**Second function**
```
Expand Down

0 comments on commit 4fc02cd

Please sign in to comment.