show dbs
This file contains 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
(Dimensions from react-native"; | |
const {width: deviceWidth, height: deviceHeight) Dimensions.get("window"); | |
const hp percentage( return (percentage devicelleight)/100; | |
const w percentage( return (percentage devicelleight) / 100 |
This file contains 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 { | |
background: #f9f9f9; | |
font-family: 'Open Sans', sans-serif; | |
text-align: center; | |
} | |
#container { | |
position: relative; | |
z-index: 2; | |
padding-top: 100px; |
This file contains 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
//Challenge #1 >Write a function sum_even(a) that sums up the even numbers in the list(array) | |
function sum_even(a) { | |
b = []; | |
for (var i = 0; i < a.length; ++i) { | |
if ((a[i] % 2) === 0) { | |
b.push(a[i]); //gives us the array for even nums |
its a brief online fullstack developer profile
A Pen by Dominic Imbuga on CodePen.