Skip to content

Major additions to all README.md files.#12

Merged
buckyroberts merged 2 commits intobuckyroberts:masterfrom
RKALM:master
Jul 28, 2016
Merged

Major additions to all README.md files.#12
buckyroberts merged 2 commits intobuckyroberts:masterfrom
RKALM:master

Conversation

@RKALM
Copy link
Contributor

@RKALM RKALM commented Jul 23, 2016

Is the same text to the end of every README.md
please feel free to check :)

Javascript functions

According to W3schools:

A JavaScript function is a block of code designed to perform a particular task.

A JavaScript function is executed when "something" invokes it (calls it).

function myFunction(p1, p2) {
    return p1 * p2;              // The function returns the product of p1 and p2
}

JavaScript Function Syntax

A JavaScript function is defined with the function keyword, followed by a name, followed by parentheses ().

Function names can contain letters, digits, underscores, and dollar signs (same rules as variables).

The parentheses may include parameter names separated by commas:
(parameter1, parameter2, ...)

The code to be executed, by the function, is placed inside curly brackets: {}

function name(parameter1, parameter2, parameter3) {
    code to be executed
}

Function parameters are the names listed in the function definition.

Function arguments are the real values received by the function when it is invoked.

Inside the function, the arguments behave as local variables.

The New Boston

Links

RKALM added 2 commits July 23, 2016 16:56
I updated all the README.md by inserting a bunch of text on the tail of
every each of them.
Is the same text for all of them.
@buckyroberts buckyroberts merged commit 0edb37e into buckyroberts:master Jul 28, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants