Skip to content

Instantly share code, notes, and snippets.

View ebenezerdon's full-sized avatar
🗣️
I turn imaginations into reality

Ebenezer Don ebenezerdon

🗣️
I turn imaginations into reality
View GitHub Profile
@ebenezerdon
ebenezerdon / App.css
Created October 28, 2019 14:48
style file for rxjs_react_chat app
.container {
font-family: Arial, Helvetica, sans-serif;
padding: 1em;
}
.chat-box {
background: #202020;
margin: auto;
padding: 2em;
height: 35em;
@ebenezerdon
ebenezerdon / multiplyByTwo
Created September 28, 2019 00:12
A function to be used as an illustration in my article: JavaScript Functions
const multiplyByTwo = function(value) {
if (isNaN(value)) {
return 'Value must be a number'
}
return (value * 2)
}