(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| var digitUppercase = function(n) { | |
| var fraction = ['角', '分']; | |
| var digit = [ | |
| '零', '壹', '贰', '叁', '肆', | |
| '伍', '陆', '柒', '捌', '玖' | |
| ]; | |
| var unit = [ | |
| ['元', '万', '亿'], | |
| ['', '拾', '佰', '仟'] | |
| ]; |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| /* | |
| * This work is free. You can redistribute it and/or modify it under the | |
| * terms of the Do What The Fuck You Want To Public License, Version 2, | |
| * as published by Sam Hocevar. See the COPYING file for more details. | |
| */ | |
| /* | |
| * Easing Functions - inspired from http://gizma.com/easing/ | |
| * only considering the t value for the range [0, 1] => [0, 1] | |
| */ | |
| EasingFunctions = { |