Giter Club home page Giter Club logo

collaborate's Introduction

Welcome

Welcome to this repository where you can get a first glance of collaborating on GitHub! Please answer the following questions:

Recap

  1. Why would you use a loop? Write me a for & a while loop that prints your favorite food 10 times.

  2. How do I try out whether my loop is working?

  3. What are arrays? What is an ordered collection?

  4. Write me an array with the names of your team and iterate over them, so all names will be printed out (using for each).

  5. What is the difference between a loop and an array? Why would you use either of them?.

  6. What is happening here?

var multiply = function(a, b) {
  return a * b; 
};

multiply(2, 3)
  1. How could we log the arguments of the code above?

  2. What is ‘scope’?

  3. Can I use my vars at the following places?

var name = Rembert 

//Place A

var codaisseur = function() { 
  //Place B
}
var codaisseur = function() {
  var name = Rembert 
  //Place C
}

//Place D
  1. Why would you use an object?

  2. Create an object ‘teacher', that stores the name, favorite language and a teach-function of that teacher that will alert you with some useful knowledge.

  3. What are the property-names and values of the object you just created?

  4. Why would you use git?

  5. What is the difference between git add,git commit and git push ?

Clone this repository and add a file with the answers to these questions to the directory of your class. Name it 'AnswersFromYourName.md' Make sure to add a pull request and make some class mates review it!

collaborate's People

Contributors

mimimagusin avatar sarariach avatar annavanbohemen avatar atharv7 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.