We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c460f95 commit 9255e89Copy full SHA for 9255e89
1 file changed
JavaScript Outlines/javaScriptFoundation.js
@@ -254,7 +254,21 @@ Solving Programming Problems
254
even numbers, return the empty array "evenNumbers".
255
256
QUESTIONS ABOUT THE PROBLEM:
257
- •
+ • How would I setup the function:
258
+ --------------------------------------
259
+ function selectEvenNumbers() {
260
+ // code goes here
261
+ }
262
263
+ • How can a computer tell what an even number is?
264
+ • If you dont know, chances are the answer is on stack overflow or some other site.
265
+ • Best to get a few answers, write them down in case you need them later.
266
267
+ num % 2 === 0
268
+ if (n % 2) {...}
269
270
+
271
272
273
274
0 commit comments