Android IDE (AIDE) Support Forum

AIDE Web Doubt (Javascript)

I really liked the application to study JavaScript and it was one of the best I found. I am a beginner and am starting Javascript now after studying HTML / CSS and was wondering if the application can do everything the same as if it were on the desktop? I’m thinking of buying

It can do all except node projects and ES6 projects

1 Like

Can you help me with below problem?

Write a mult function which takes two numbers as parameter and returns product of both.

console.log(mult(10,20))
console.log(mult(100,200))

I still doesn’t understand of that command for

its basically just asking you to write a function called mult that takes in 2 numbers then multiplys them together and returns the result of them. So something like this.

Summary

function mult(num1,num2)
{
return num1 * num2;
}

then print to the console

console.log(mult(10,20));