Skip to content
This repository was archived by the owner on Oct 26, 2020. It is now read-only.

javaSscript--week2-HomeWork #28

Open
wants to merge 45 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
6c893ee
Update pull_request_template.md
nouri89 Jun 18, 2020
5189eb2
testing the console
nouri89 Jun 18, 2020
756cf5d
printing Hello world three times
nouri89 Jun 18, 2020
6dc1425
solve exercise D
nouri89 Jun 19, 2020
d923411
solving exercise D
nouri89 Jun 19, 2020
b9d7400
solving exercise E
nouri89 Jun 19, 2020
9a6edf6
solving excercise1
nouri89 Jun 19, 2020
4a7c672
solving exercise
nouri89 Jun 19, 2020
f00e033
solve exercise G
nouri89 Jun 19, 2020
ecf75a6
solving float exercise
nouri89 Jun 19, 2020
b3c20c5
solving exercise
nouri89 Jun 19, 2020
7d84ec7
solving Function exercise
nouri89 Jun 19, 2020
fa1e45c
solve exercise
nouri89 Jun 19, 2020
4e50e82
solve exercise
nouri89 Jun 19, 2020
fd04331
update exercise
nouri89 Jun 19, 2020
75a7612
solve exercise4.js
nouri89 Jun 19, 2020
71490ad
Solve exercise5.js
nouri89 Jun 19, 2020
6aa1514
sove exercise L
nouri89 Jun 19, 2020
3626e06
Solving currency conversion exercise
nouri89 Jun 19, 2020
7cfd051
solve piping exercise
nouri89 Jun 19, 2020
d648fd9
mark as done
nouri89 Jun 25, 2020
5c71bac
Mark as done
nouri89 Jun 25, 2020
4526f42
Complete Exercise
nouri89 Jun 25, 2020
1eedd9c
Complete Comparison exercise
nouri89 Jun 25, 2020
6f848d3
Complete Predicates exercise
nouri89 Jun 25, 2020
3cdf839
Complete conditional exercise
nouri89 Jun 25, 2020
635eaaf
complete logical exercise
nouri89 Jun 25, 2020
b3069f6
complete logical exercise2
nouri89 Jun 25, 2020
8e260a4
Update exercise-1.js
nouri89 Jun 25, 2020
9c603f5
Solve Exercise2
nouri89 Jun 25, 2020
3a801d8
Solve exercise 3
nouri89 Jun 25, 2020
8ca4cfc
Solve exercise4
nouri89 Jun 25, 2020
dd837fe
solve array exercise
nouri89 Jun 25, 2020
952cc2c
solve array exercise
nouri89 Jun 25, 2020
929fd83
solve array exercsie
nouri89 Jun 25, 2020
fa65fda
solve exercise
nouri89 Jun 25, 2020
f9f74da
solve exercise 2
nouri89 Jun 25, 2020
fd97683
solve fix-functions exercise
nouri89 Jun 25, 2020
01a7765
solve function-creation exercise
nouri89 Jun 25, 2020
9e9acbf
solve plying-computer exercise
nouri89 Jun 25, 2020
72f97b0
solving sorting-algorithm exercise
nouri89 Jun 25, 2020
07880c1
solving first question of radio-stations exercise
nouri89 Jun 25, 2020
b94d3c5
updating week number
nouri89 Jun 26, 2020
1cf6135
Solving radio stations exercise
nouri89 Jun 26, 2020
88679ff
update week 3
nouri89 Jul 5, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
solve array exercise
  • Loading branch information
nouri89 authored Jun 25, 2020
commit dd837fee6b5873368822da72672441ceef4abb97
3 changes: 2 additions & 1 deletion week-2/1-exercises/H-array-literals/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

var numbers = []; // add numbers from 1 to 10 into this array
var mentors; // Create an array with the names of the mentors: Daniel, Irina and Rares

numbers = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ];
mentors = [ 'Daniel', 'Irina', 'Rares' ];
/*
DO NOT EDIT BELOW THIS LINE
--------------------------- */
Expand Down