Skip to content

Commit 6f80b97

Browse files
authored
Merge pull request #3 from Jtoledo88/master
spanish translate
2 parents 184115b + 303249f commit 6f80b97

File tree

50 files changed

+838
-28
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+838
-28
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//your code below
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
var mySuperVariable = 'hello';
2+
console.log(mySuperVariable);
3+
4+
// Your code below:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// Your code below:
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
var age = prompt('What is your age?');
2+
3+
// Your code below:
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
const VERSION = '0.1';
2+
3+
//Change the code below:
4+
5+
VERSION = '0.9';
6+
7+
console.log(VERSION);
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
//Set the values here
3+
var myVar1 = '';
4+
var myVar2 = '';
5+
6+
7+
8+
//Don't change any code below
9+
var theNewString = myVar1+' '+myVar2;
10+
console.log(theNewString);
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
const a = '</title>';
2+
const b = '</html>';
3+
const c = '<head>';
4+
const d = '</body>';
5+
const e = '<html>';
6+
const f = '</head>';
7+
const g = '<title>';
8+
const h = '<body>';
9+
10+
//Modify this variable
11+
let htmlDocument = '';
12+
13+
console.log(htmlDocument);
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
function isOdd(myNumber)
2+
{
3+
return !(myNumber % 2 == 0);
4+
}
5+
6+
// Your code below:
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
function addNumbers(a,b)
2+
{
3+
// Your code here
4+
}
5+
6+
//Do not change the code below
7+
console.log(addNumbers(3,4));
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/* This exercise is almost identical to 15-Random numbers - consider merging them here and using another concept for 15? */
2+
3+
// Declare your function here

0 commit comments

Comments
 (0)