Message from JavaScript discussions

September 2017

— 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

Message permanent page

— 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 ?

Message permanent page

— 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

Message permanent page

— 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));

Message permanent page

— I don't think JS can do value unpacking on assignment

— Meaning

a, b = b, a

is not a thing that works in JS

— In fact I think Python might be one of the only languages where you can do that