Tech24 Deals Web Search

Search results

  1. Results from the Tech24 Deals Content Network
  2. Rosetta Code. Rosetta Code is a series of programming challenges to help you become a more well-rounded developer. Named after the famous Rosetta Stone, the open source website hosts hundreds of problems solved in a variety of programming languages. 12.

  3. freeCodeCamp Challenge Guide: Problem 1: Multiples of 3 and 5

    forum.freecodecamp.org/t/freecodecamp-challenge-guide-problem-1-multiples-of-3...

    Problem Explanation. We can find if a number is divisble by another number with the help of % modulo operator. num1 % num2 returns 0 if there’s no remainder while doing num1/num2. Starting from i = 3 because that’s the first number that’s divisble by 3 or 5, we loop through till the number provided. If the number is divisible either by 3 ...

  4. How To Get Help When You Are Stuck Coding - The freeCodeCamp...

    forum.freecodecamp.org/t/how-to-get-help-when-you-are-stuck-coding/19514

    The freeCodeCamp Forum How To Get Help When You Are Stuck Coding. Guide. camperbot July 11, 2016, 10:37pm ...

  5. How to Use Gitpod in the Curriculum - The freeCodeCamp Forum

    forum.freecodecamp.org/t/how-to-use-gitpod-in-the-curriculum/668669

    Gitpod is an online platform that makes it easy to clone and run code from online code repositories like GitHub and Gitlab. It’s essentially VS Code in the browser, running on a temporary server called a workspace, which you can use for development. This guide will cover how to use Gitpod to work on practice and required projects for the Backend Development and APIs, Quality Assurance, and ...

  6. freeCodeCamp Challenge Guide: Build a Survey Form

    forum.freecodecamp.org/t/freecodecamp-challenge-guide-build-a-survey-form/301145

    Build a Survey Form. Hints/Solutions are not provided for certification projects as these are intended to be a test of your learning and understanding. 103 Likes. Survey project for you to peruse. Confused thoroughly at all of this.

  7. Iterate with JavaScript While Loops - The freeCodeCamp Forum

    forum.freecodecamp.org/t/freecodecamp-challenge-guide-iterate-with-javascript...

    If the i++ is added before the .push you will get the output of 1-5 and not 0-4. Iterate with JavaScript While Loops Problem Explanation While loops will run as long as the condition inside the ( ) is true. Example: while (condition) { //code... } Hints Hint 1 Use a iterator variable such….

  8. freeCodeCamp Challenge Guide: Profile Lookup

    forum.freecodecamp.org/t/freecodecamp-challenge-guide-profile-lookup/18259

    Profile Lookup Problem Explanation Change the code below // Only change code below this line and up to // Only change code above this line. Ensure that you are editing the inside of the lookUpProfile() function. This function includes two parameters, name and prop. The function should look through the contacts list for the given name parameter. If there is a match found, the function should ...

  9. freeCodeCamp Challenge Guide: Passing Values to Functions with...

    forum.freecodecamp.org/t/freecodecamp-challenge-guide-passing-values-to...

    Passing Values to Functions with Arguments Problem Explanation Our task is to create a function that has parameters. These are inputs that determine the function’s output. You place paramaters inside the (), like so: function functionWithArgs(one, two) { console.log(one + two); } We now have to add code inside the brackets. Our task is to add one and two, and print the sum to the console ...

  10. freeCodeCamp Challenge Guide: Manipulating Complex Objects

    forum.freecodecamp.org/t/freecodecamp-challenge-guide-manipulating-complex...

    Solutions. Manipulating Complex Objects Solutions <details><summary>Solution 1 (Click to Show/Hide)</summary>After string // Add record here we add new album to the myMusic. You need to start from ,. And you can just copy already created album: { "…</details>.

  11. freeCodeCamp Challenge Guide: Counting Cards

    forum.freecodecamp.org/t/freecodecamp-challenge-guide-counting-cards

    Counting Cards Hints Hint 1 Use a switch (or else if) statement to handle the different values of cards passed to the function. Hint 2 Add/subtract the value of each card to variable count. If the card is worth 0, don’t do anything. Hint 3 After you’ve counted the cards, use an if statement to check the value of count. Also, make sure your return has a space between the number and the ...