Git Product home page Git Product logo

Comments (12)

sabhinav10 avatar sabhinav10 commented on May 22, 2024

screenbud-cbd1390c-fb74-4cfd-9abf-4f5360820a58 while learning JS, i ran into a small issue and im stuck . Any help rendered would be appreciated

Hi ,In the for loop ,both initial and final value of i is inclusive:
for(let i=5;i<=10;i++)
due to which **loop runs 6 times ** i think that might be the issue .Hope it helps.

from javascript.

dree-max avatar dree-max commented on May 22, 2024

Hello, it still doesn't give me the required answer
Thanks for the help though

from javascript.

karthik123karthik avatar karthik123karthik commented on May 22, 2024

try running **i from 0 to n inside loop ** . I think it might work.

from javascript.

dree-max avatar dree-max commented on May 22, 2024

still didnt work for me

from javascript.

 avatar commented on May 22, 2024

Hi @dree-max, there's a super easy approach without loops if you want to... i.e. using .repeat().

You can simply solve this in 4 lines of code:

function scream(n) {
    let str = 'a'.repeat(n)
    console.log(str)
}

scream(10) 

Lemme know if you have any questions. Cheers :)

from javascript.

dree-max avatar dree-max commented on May 22, 2024

Unfortunately this one has to have loops because it's what's been examined in this particular exercise!
Thank you for the other option though I tried it out and it works just fine

from javascript.

VaibhavArora19 avatar VaibhavArora19 commented on May 22, 2024

You can do it like this!

function scream(n)
{
    let str = '';
    while(n--)
    {
        str +='a';
    }
    console.log(str);
}

scream(10);

from javascript.

 avatar commented on May 22, 2024

Hello @ dree-max, you have already figured that out but still useful to give my two cents.

In Pseudocode, that problem would be solved like this:

 n = 5
 i = 0
 from i to n:
     //  do

In JavaScript, that would be solved like this:

function scream(n) {
     let str = "";
     for (let i = 0; i<n; i++) 
          str = str + 'a';
     return str;
}

console.log(scream(2)); // aa
console.log(scream(5)); // aaaaa

from javascript.

abhirajn avatar abhirajn commented on May 22, 2024

@dree-max run loop as i=0 ; i < n; i++
this have to work

from javascript.

SiyonaL avatar SiyonaL commented on May 22, 2024

function scream(n) {
let str = "";
for (let i = 0; i<n; i++)
str = str + 'a';
return str;
}

console.log(scream(3)); // aaa
console.log(scream(5)); // aaaaa

//This will solve the issue.
Happy to help :)

from javascript.

Anshkaran7 avatar Anshkaran7 commented on May 22, 2024

function scream(n) {
return Array(n+1).join('a');
}

console.log(scream(3)); // aaa
console.log(scream(5)); // aaaaa

Hey @dree-max , Easy approach without loops if you want to..(using an Array and then join it with 'a' as the separator.)

from javascript.

vishal00923 avatar vishal00923 commented on May 22, 2024

// simple solution with for loop

`function scream(n) {
let str = '';
for (let i = 0; i < n; ++i) {
str += 'a';
}

return str;
}

console.log(scream(5));
console.log(scream(10));`

from javascript.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.