Message from JavaScript discussions
September 2017
— Why not tho
Keyboard shortcuts as an entire idea is very foreign to me, making it cumbersome. Same goes for gestures and mice with extra buttons
— Ah, I see.
— Yeah, gestures and mice with extra buttons are meh.
— I grew up on a Quadra 630, no CLI... that came out around 1993. I think I was spoiled by GUIs pretty early on.
— I just go full ham on the mouse, haha. If it's got 5 buttons, those get hit 10 times a second by accident
— Heh
— Most "enterprise" code reads like garbage
— Anyone here used Morris line chart/graph ? I have an issue.. on the click of a tab the chart is getting redrawn... What can i do ?
— Hi Guys, we are looking for a senior frontend developer with a good experience in React for a fulltime, remote job
https://drive.google.com/file/d/0B87fH2n0Egq1eEJRRzdPaEhOVmc/view
— If you are interested, please feel free to contact me on private
— /*Hello guys please i am trying to use the for loop to write the fibonacci sequence can you guys tell me what i am doing wrong i am using my knowledge in python to do this but it is not working*/
var m = function(n){
var a = 0
var b = 1
for(var i = 0, i<n, i++){
a,b = b, a+b
}
return a;
};
console.log(m(4));