Message from JavaScript discussions
May 2020
— You mean like this ^?
You Have To Do Yourself Understand Code With Your Skills... Suggestion Breakdown Code Then Try To Understand..
— This_is_a_snake_case_typing butCamelCaseIsAlsoAThing, ALLCAPSAREGENERALLYPROHIBITED, But What The Heck Is This Crap (buggy phone?) oh-i-forgot-about-this-hyphen-case AndObjectConstuctorCase.
— Lets maybe make some petition to the famous author from the public? Like we sign a letter to D.Crockford and ask him to make some youtube video where he describes his vision of the JS and stuff🤨
— Https://www.hackerrank.com/challenges/best-divisor/problem
— Function find(n)
{
let m;
let sum=0;
while(n!=0)
{
m=n%10;
sum+=m;
n=Math.floor(n/10);
}
return sum;
}
function main() {
let largest=[];
const n = parseInt(readLine(), 10);
for(let i=1;i<=n;i++)
{
if(n%i==0)
largest.push(find(i));
}
console.log(Math.max(...largest));
}
— Why only 14/25 test case is matching
— Can anyone help me
— Good news, new law - now social networks will take responsibility for their moderation decisions.. more freedom to users👍
— Https://internshala.com/kickstart-your-career?utm_source=refer_copylink&utm_medium=5807518
— Fck registrations... kickstart my heart🤤🎧ohhh yeeeah🎸
— Do you know any good JS course for beginners that does not first teach old JavaScript and then puts a "this is new in ES6" in the end but teaches modern JavaScript from lesson 1?