mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-01-13 13:20:43 -05:00
javascript basics from the course
This commit is contained in:
parent
54bd71c9b5
commit
45d1442742
2 changed files with 64 additions and 0 deletions
11
javascript/index.html
Normal file
11
javascript/index.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
53
javascript/script.js
Normal file
53
javascript/script.js
Normal file
|
@ -0,0 +1,53 @@
|
|||
let add7 = (number) => {
|
||||
sum = number + 7;
|
||||
console.log(sum);
|
||||
}
|
||||
|
||||
add7(2);
|
||||
|
||||
|
||||
function multiply(x, y) {
|
||||
console.log(x * y);
|
||||
}
|
||||
|
||||
multiply(5,5);
|
||||
|
||||
let capitalize = (word) => {
|
||||
// if (word != String) {
|
||||
// console.log("Need a string")
|
||||
// }
|
||||
str_len = word.length
|
||||
console.log(word[0].toUpperCase()+word.slice(1,str_len))
|
||||
|
||||
}
|
||||
|
||||
let test = testing => {
|
||||
console.log(testing)
|
||||
}
|
||||
|
||||
let lastLetter = word => { console.log(word[word.length - 1])}
|
||||
|
||||
capitalize("bob")
|
||||
capitalize("UPPER")
|
||||
capitalize("tHiS Is Mixed")
|
||||
test("Hello, there!")
|
||||
|
||||
lastLetter("DeeZ")
|
||||
|
||||
|
||||
let fizzBuss = number => {
|
||||
if (number % 5 == 0 && number % 3 == 0) {
|
||||
console.log("FizzBuzz")
|
||||
} else if (number % 3 == 0) {
|
||||
console.log("Fizz")
|
||||
} else if (number % 5 == 0) {
|
||||
console.log("Buzz")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
fizzBuss(10)
|
||||
fizzBuss(15)
|
||||
fizzBuss(9)
|
||||
fizzBuss(4)
|
||||
fizzBuss(900)
|
Loading…
Reference in a new issue