-
π Iβm currently working on KukuPro
-
π± Iβm currently learning Flutter
-
π¨βπ» All of my projects are available at https://onejohi.com
-
π I regularly write articles on https://medium.com/@onejohi
-
π¬ Ask me about Vue, JavaScript, Python and C#
-
π« How to reach me [email protected]
-
β‘ Fun fact I love motorcycles and kittens.
π―
Focusing
Highlights
Pinned Loading
-
async-await.js
async-await.js 1var resolveAfter25Seconds = (func) => {
2console.log(`starting a slow promise on: ${func}`)
3return new Promise(resolve => {
4setTimeout(function() {
5resolve(25)
-
An example of an Angular service con...
An example of an Angular service consuming and sending data to an API endpoint, 1import { Injectable } from '@angular/core'
2import { Http } from "@angular/http"
3import 'rxjs/add/operator/map'
45@Injectable()
-
javascript.js
javascript.js 1// an absctract representation
2class Person {
3constructor(name,email) {
4this.name = name
5this.email = email
-
is_palindrome.js
is_palindrome.js 1//Given an integer x, return true if x is a palindrome, and false otherwise.
23const isPalindrome = function(x) {
4if (x !== 0 && x % 10 === 0) {
5return false
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.