File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -118,15 +118,15 @@ console.log('I'm awesome');
118118<br > 8.6 Make sure to also show a message when the variables you are comparing are not the same type.
119119<br > For example:
120120
121- ```js
122- let x = 9;
123- let y = 'Hello';
124-
125- if () {
126- console.log('SAME TYPE');
127- }
128- // TODO -> add a way of giving feedback if your variables don't have the same type
129- ```
121+ ``` js
122+ let x = 9 ;
123+ let y = ' Hello' ;
124+
125+ if () {
126+ console .log (' SAME TYPE' );
127+ }
128+ // TODO -> add a way of giving feedback if your variables don't have the same type
129+ ```
130130
1311319 . If ` x ` equals 7, and the only other statement is ` x = x % 3 ` , what would be the new value of ` x ` ?
132132 9.1 Add at least 3 ` console.log ` statements in which you show that you understand what ` % ` does.
You can’t perform that action at this time.
0 commit comments