This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let str = 'Lorem ipsuma is simply dummy loreman'; | |
let arr = str.split (' '); | |
for (let i = 0; i < arr.length; i++){ | |
if(arr[i].length >= 5) { | |
console.log(arr[i]); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-size: 18px; | |
font-family: 'Fira Sans', sans-serif; | |
line-height: 1.5em; | |
min-height: 100vh; | |
background-color: #e5e5e5; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html{ | |
box-sizing: border-box; | |
} | |
*, *::before, *::after{ | |
box-sizing: inherit; | |
} |
NewerOlder