Skip to content

Pre-course assessment for basic JavaScript functions and arrow syntax.

Notifications You must be signed in to change notification settings

lillapulay/basic-js-functions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basic JavaScript functions - pre-course assessment

See this Integrify assessment's instruction below.


Javascript Assignment

These exercises were designed to help learning basic skills in javascript

Prerequisites

Create a Github account if you haven't and setup your ssh key for authentication.

Instructions

Fork this repository to your Github account. Then clone the fork to your machine, make commits and push to your fork. Then open pull request to the original repository.

Optionally, you can also run test against your code:

  1. Install dependencies: yarn
  2. Run test: yarn run test

Resources:

Assignments

Your code will go into the src/index.js file

  1. Create a function that will take 2 numbers as inputs, then return the sum of the 2 numbers.

  2. Create a similar function as the above, but return the multiple of the 2 numbers.

  3. Write a function that accepts a number as input, if the number is odd, return a string 'odd', if this number is even, return a string 'even'.

  4. Write a function that return an array of numbers, starting from 1 to 100.

  5. Fix the function number 5 in index.js

  6. Write a function that accepts unlimited amount of numbers as input and return the smallest value

  7. Write a function that accepts an array of numbers as input and return a new array with all numbers doubled.

  8. Write a function that accepts a student array as first parameter, and a name as second parameter and return the student with that name. More details in index.js.

  9. Refactor all of the above functions into arrow functions.

About

Pre-course assessment for basic JavaScript functions and arrow syntax.

Topics

Resources

Stars

Watchers

Forks