Giter VIP home page Giter VIP logo

simplejavascriptcode's Introduction

Simple Javascript code samples

This are some simple Javascript code

Phrase generator

js file

create a function that generate a random phrases, create three literal arrays, randomly generate number based on the arrays length, use the random number to select the array value and concatenate the values to create a random phrase

Array Iteration

js file

Use for loop to access array vales and index and print to console
  • Display all of the values on a array

    pseudocode

    DECLARE a variable highestValue and set it to zero
    FOR : var i = 0; i < array.length; i++
    DISPLAY the array values array[i]
    IF array[i] > highestValue
    SET highestValue == array[i]
    END IF
    END FOR
    DISPLAY highestValue

  • Display all top values index

DECLARE a array topValuesIndex and set it to empty array
FOR : var i = 0; i < array.length; i++
IF highestValue === topValuesIndex
ADD push i to topValuesIndex
END IF
END FOR
DISPLAY topValuesIndex

js file

  Refactor code to use functions to make code more reusable  
  • user a second array to bind the best score

js file

pseudocode

** FUNCTION ** getBestScoreValue(score,costs,highScore);
DECLARE variable cost and set to 100
FOR : var i = 0; i < array.length; i++
IF array[i] === highScore
IF score[i] < bestScore
SET index to i
SET bestScore to bestScore[i]
END IF
END IF
END FOR
RETURN index

simplejavascriptcode's People

Contributors

savagesnake avatar

Watchers

James Cloos avatar

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.