Hey there! You're here because you're learning to code.

Learning is never easy. You're going to run into issues and it's expected. Only by overcoming these issues, you're going to get a valuable experience that will stay with you forever. But it doesn't mean that you're in it on your own!

Most frequently, you're going to have questions about tasks. You can post them in the section "Tasks" using the button "Start a Discussion" on the front page.

Rules

  1. Write using markdown.
  2. Be clear and concise about the problem you're having.
  3. Add the code that you're submitting and make sure to wrap it in triple backticks to make it look good.
    16 days later

    having problem solving the task 2
    here is the problem- In this task, you need to write the program yourself. Since you are just starting, this program will consist of one command - console.log. Use it to display the string I will become a JS developer in 2021! .
    here is my answer- console.log('I will become a JS developer in 2021!');

    @Dcosta you solution looks good. Make sure that there are no extra console.log's in the solution.js file.

    For future issues, I suggest creating a new topic.

    • Lawy replied to this.
      4 months later
      15 days later
      1. You should print the string 'I will become a JS developer in 2022!' to the console without quotes...this is the message I am getting...
        12 days later
        4 days later

        Please I am having issues in task 101.

        I was told to Implement a function sum in helper.js which should return the sum of two numbers
        here is my code : export const sum =(4, 5) => { return 4 + 5;}; and this is the error message ● Test suite failed to run SyntaxError: /app/102102_bf4054d2-c430-42aa-afdd-0c0ed843c289/helper.js: Binding invalid left-hand side in function parameter list. (1:19)

        please what do i do?

          Henry14 I've replied to your original message. You should re-read the lecture and pay attention to the words arguments and parameters

          9 days later

          i didn't know where i should post my question.. I am stuck at 9th stage of task 250.
          Here is my handler.js file:

          `export const handleKeyPress = (term, state) => {
          return (name, matches, data) => {
          data.code = String.fromCharCode(data.code);
          if (data.code == 'G' || data.code == 'g') {
          state.gold++;
          updateGold(term, state);
          } else {
          for (let i = 0; i < state.producers.length; i++) {
          if (data.code == String(state.producers.id)) {
          if (state.gold >= state.producers.cost) {
          state.gold -= state.producers.cost;
          state.producers.cost = state.producers.cost * state.producers.growthRate;
          state.producers.count++;
          }

                      }
          
                  }
              }
          
          }

          };`
          And here is the responce after submitting:

          24 days later

          Sameyol you should google (or try to recall from your school days) the correct formula and then use it in the function circleLength.

          2 months later
          2 months later

          Coderslang_Master Having problem on the task 2.
          Could you explain to me like a first timer what you meant by there should be no extra console,log 's in the solution.js file.
          Here is my answer to the question which as been marked failed
          console.log('I will become a JS developer this year 2022!');

            5 days later

            Lawy your solution is almost correct. Pay attention to every word and every character you print out to the console.

            Hint: there's nothing about this year in the task description.

            a month later

            This is my code in in Task121.
            export const min = (a, b, c) => {
            let minNum=0;
            if(a<b && a<c)minNum=a;
            if(b<a && b<c)minNum=b;
            if(c<a && c<b)minNum=c;
            return minNum;
            }

            But I am getting error but it is not passing test-3. The output is ok.

              16 days later

              codyfreelancers usually, it's best to create a new topic for each task you're having issues with.

              In your code example, you're missing the case when all (or some of) the arguments are equal.

              Other minor fixes you may want to make: add curly braces for each if. Use return in each if instead of using minNum