Skip to content

Instantly share code, notes, and snippets.

View konekoya's full-sized avatar
🎯
Focusing

Joshua konekoya

🎯
Focusing
View GitHub Profile
@konekoya
konekoya / Front-end-Developer-Interview-Questions-TC.md
Created April 23, 2016 08:16 — forked from hanksudo/Front-end-Developer-Interview-Questions-TC.md
Front-end-Developer-Interview-Questions - 前端工程師面試問題集(繁體中文版)

前端工程師面試問題集

@版本 2.0.0

譯注:此翻譯版,主要給不能流利的讀英文的人看,相關專有名詞還是保留原文。翻譯不好地方請協助pull request.

此repository包含了一些前端開發的面試問題,來審查一個有潛力的面試者。這並不是建議你對同一個面試者問上所有的問 (那會花費好幾小時)。從列表中挑幾個題目,應該就夠幫助你審查面試者是否擁有你需要的技能。

Rebecca MurpheyBaseline For Front-End Developers 也是一篇很棒且值得讀的文章在你開始面試之前。

@konekoya
konekoya / _.md
Created October 26, 2016 05:50
reddit base
@konekoya
konekoya / _.md
Last active October 27, 2016 01:20
Tributary inlet
@konekoya
konekoya / object.assign.js
Created November 17, 2016 01:50
Object.assign
export default function courseReducer(state = [{title: 'oh'}, {title: 'yes'}], action) {
debugger;
switch(action.type) {
case 'CREAGE_COURESE':
return [...state, action.course];
@konekoya
konekoya / dom-to-json.js
Created March 1, 2017 23:05 — forked from sstur/dom-to-json.js
Stringify DOM nodes using JSON (and revive again)
function toJSON(node) {
node = node || this;
var obj = {
nodeType: node.nodeType
};
if (node.tagName) {
obj.tagName = node.tagName.toLowerCase();
} else
if (node.nodeName) {
obj.nodeName = node.nodeName;
@konekoya
konekoya / destructuring.js
Created March 27, 2017 03:35 — forked from mikaelbr/destructuring.js
Several demos and usages for ES6 destructuring. Runnable demos and slides about the same topic: http://git.mikaelb.net/presentations/bartjs/destructuring
// === Arrays
var [a, b] = [1, 2];
console.log(a, b);
//=> 1 2
// Use from functions, only select from pattern
var foo = () => [1, 2, 3];