Skip to content

Commit

Permalink
Fixed many links
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpolk committed Dec 5, 2013
1 parent 9432f8c commit d9b394d
Show file tree
Hide file tree
Showing 53 changed files with 266 additions and 332 deletions.
2 changes: 1 addition & 1 deletion round-betty/Array-Object.wiki
Expand Up @@ -67,7 +67,7 @@ The following table describes the functions of the '''Array''' object.
! Function
! Description
|-
| [[javascript/Array/Array.isArray|Array.isArray Function]]
| [[javascript/Array/isArray|Array.isArray Function]]
| Returns a Boolean value that indicates whether an object is an array.
|}

Expand Down
2 changes: 1 addition & 1 deletion round-betty/Bitwise-AND-Assignment-Operator.wiki
Expand Up @@ -10,7 +10,7 @@ Sets the result of a bitwise AND operation on the value of a variable and the va
Using this operator is the same as specifying:

result = result & expression
The [[javascript/Operators/Bitwise AND|Bitwise AND Operator (&)]] looks at the binary representation of the values of result and expression and does a bitwise AND operation on them. The output of this operation behaves like this:
The [[javascript/operators/bitwise and|Bitwise AND Operator (&)]] looks at the binary representation of the values of result and expression and does a bitwise AND operation on them. The output of this operation behaves like this:

// 9 is 00000000000000000000000000001001
var expr1 = 9;
Expand Down
22 changes: 11 additions & 11 deletions round-betty/Compound-Assignment-Operators.wiki
Expand Up @@ -7,37 +7,37 @@ The following table lists JavaScript assignment operators.
! Operator
! Symbol
|-
| [[javascript/Operators/Addition Assignment|Addition]]
| [[javascript/operators/addition assignment|Addition]]
| +=
|-
| [[javascript/Operators/Bitwise AND Assignment|Bitwise AND]]
| [[javascript/operators/bitwise and assignment|Bitwise AND]]
| &=
|-
| [[javascript/Operators/Bitwise OR Assignment|Bitwise Or]]
| [[javascript/operators/bitwise or assignment|Bitwise Or]]
| {{!}}=
|-
| [[javascript/Operators/Bitwise XOR Assignment|Bitwise XOR]]
| [[javascript/operators/bitwise xor assignment|Bitwise XOR]]
| ^=
|-
| [[javascript/Operators/Division Assignment|Division]]
| [[javascript/operators/division assignment|Division]]
| /=
|-
| [[javascript/Operators/Left Shift Assignment|Left Shift]]
| [[javascript/operators/left shift assignment|Left Shift]]
| <<=
|-
| [[javascript/Operators/Modulus Assignment|Modulus]]
| [[javascript/operators/modulus assignment|Modulus]]
| %=
|-
| [[javascript/Operators/Multiplication Assignment|Multiplication]]
| [[javascript/operators/multiplication assignment|Multiplication]]
| *=
|-
| [[javascript/Operators/Right Shift Assignment|Right Shift]]
| [[javascript/operators/right shift assignment|Right Shift]]
| >>=
|-
| [[javascript/Operators/Subtraction Assignment|Subtraction]]
| [[javascript/operators/subtraction assignment|Subtraction]]
| -=
|-
| [[javascript/Operators/Unsigned Right Shift Assignment|Unsigned Right Shift]]
| [[javascript/operators/unsigned right shift assignment|Unsigned Right Shift]]
| >>>=
|}

Expand Down
9 changes: 3 additions & 6 deletions round-betty/Date-Object.wiki
Expand Up @@ -62,13 +62,13 @@ The following table lists functions of the '''Date Object'''.
! Functions
! Description
|-
| [[javascript/Date/Date.now|Date.now Function]]
| [[javascript/Date/now|Date.now Function]]
| Returns the number of milliseconds between January 1, 1970, and the current date and time.
|-
| [[javascript/Date/Date.parse|Date.parse Function]]
| [[javascript/Date/parse|Date.parse Function]]
| Parses a string containing a date, and returns the number of milliseconds between that date and midnight, January 1, 1970.
|-
| [[javascript/Date/Date.UTC|Date.UTC Function]]
| [[javascript/Date/UTC|Date.UTC Function]]
| Returns the number of milliseconds between midnight, January 1, 1970 Universal Coordinated Time (UTC) (or GMT) and the supplied date.
|}

Expand Down Expand Up @@ -134,9 +134,6 @@ The following table lists methods of the '''Date Object'''.
| [[javascript/Date/getUTCSeconds|getUTCSeconds Method]]
| Returns the seconds value using UTC.
|-
| [[javascript/Date/getVarDate|getVarDate Method]]
| Returns the VT_DATE value in a Date object.
|-
| [[javascript/Date/getYear|getYear Method]]
| Returns the year value .
|-
Expand Down
4 changes: 2 additions & 2 deletions round-betty/Error-Object.wiki
Expand Up @@ -63,11 +63,11 @@ The following example illustrates the use of the implicitly created Error object
// Description: 'y' is undefined
==Methods==
[[javascript/Error/toString|toString Method (Error)]] {{!}} [[javascript/Date/valueOf Method|valueOf Method (Date)]]
[[javascript/Error/toString|toString Method (Error)]] {{!}} [[javascript/Date/valueOf|valueOf Method (Date)]]


==Properties==
[[javascript/Error/constructor|constructor Property (Error)]] {{!}} [[javascript/Error/description Property|number Property]] {{!}} [[javascript/Error/prototype Property|prototype Property (Error)]] {{!}} [[javascript/Error/stack Property|stack Property (Error)]] {{!}} [[javascript/Error/stackTraceLimit Property|stackTraceLimit Property (Error)]]
[[javascript/Error/constructor|constructor Property (Error)]] {{!}} [[javascript/Error/description|number Property]] {{!}} [[javascript/Error/prototype|prototype Property (Error)]] {{!}} [[javascript/Error/stack|stack Property (Error)]] {{!}} [[javascript/Error/stackTraceLimit|stackTraceLimit Property (Error)]]


==See Also==
Expand Down
2 changes: 1 addition & 1 deletion round-betty/Float32Array-Object.wiki
Expand Up @@ -18,7 +18,7 @@ The following table lists the constants of the '''Float32Array''' object.
! Constant
! Description
|-
| [[javascript/Float32Array/BYTES PER ELEMENT Constant|BYTES_PER_ELEMENT Constant]]
| [[javascript/Float32Array/BYTES PER ELEMENT|BYTES_PER_ELEMENT Constant]]
| The size in bytes of each element in the array.
|}

Expand Down
2 changes: 1 addition & 1 deletion round-betty/Float64Array-Object.wiki
Expand Up @@ -18,7 +18,7 @@ The following table lists the constants of the '''Float64Array''' object.
! Constant
! Description
|-
| [[javascript/Float64Array/BYTES PER ELEMENT Constant|BYTES_PER_ELEMENT Constant]]
| [[javascript/Float64Array/BYTES PER ELEMENT|BYTES_PER_ELEMENT Constant]]
| The size in bytes of each element in the array.
|}

Expand Down
4 changes: 2 additions & 2 deletions round-betty/Global-Object.wiki
Expand Up @@ -6,11 +6,11 @@ The '''Global''' object is never used directly, and cannot be created using the


==Constants==
[[javascript/Global/Infinity Constant|undefined Constant]]
[[javascript/Infinity|undefined Constant]]


==Functions==
[[javascript/Global/decodeURI|decodeURI Function]] {{!}} [[javascript/Global/decodeURIComponent Function|unescape Function]]
[[javascript/decodeURI|decodeURI Function]] {{!}} [[javascript/decodeURIComponent|unescape Function]]


==See Also==
Expand Down
2 changes: 1 addition & 1 deletion round-betty/Int16Array-Object.wiki
Expand Up @@ -18,7 +18,7 @@ The following table lists the constants of the '''Int16Array''' object.
! Constant
! Description
|-
| [[javascript/Int16Array/BYTES PER ELEMENT Constant|BYTES_PER_ELEMENT Constant]]
| [[javascript/Int16Array/BYTES PER ELEMENT|BYTES_PER_ELEMENT Constant]]
| The size in bytes of each element in the array.
|}

Expand Down
2 changes: 1 addition & 1 deletion round-betty/Int32Array-Object.wiki
Expand Up @@ -18,7 +18,7 @@ The following table lists the constants of the '''Int32Array''' object.
! Constant
! Description
|-
| [[javascript/Int32Array/BYTES PER ELEMENT Constant|BYTES_PER_ELEMENT Constant]]
| [[javascript/Int32Array/BYTES PER ELEMENT|BYTES_PER_ELEMENT Constant]]
| The size in bytes of each element in the array.
|}

Expand Down
2 changes: 1 addition & 1 deletion round-betty/Int8Array-Object.wiki
Expand Up @@ -18,7 +18,7 @@ The following table lists the constants of the '''Int8Array''' object.
! Constant
! Description
|-
| [[javascript/Int8Array/BYTES PER ELEMENT Constant|BYTES_PER_ELEMENT Constant]]
| [[javascript/Int8Array/BYTES PER ELEMENT|BYTES_PER_ELEMENT Constant]]
| The size in bytes of each element in the array.
|}

Expand Down
4 changes: 2 additions & 2 deletions round-betty/JSON-Object.wiki
Expand Up @@ -19,9 +19,9 @@ In the previous example, <code>!this.JSON</code> evaluates to false in Internet


==Functions==
[[javascript/JSON/JSON.parse|JSON.parse Function]]
[[javascript/JSON/parse|JSON.parse Function]]

[[javascript/JSON/JSON.stringify|JSON.stringify Function]]
[[javascript/JSON/stringify|JSON.stringify Function]]


==See Also==
Expand Down
34 changes: 17 additions & 17 deletions round-betty/JavaScript-Constants.wiki
Expand Up @@ -8,71 +8,71 @@ The following table lists predefined JavaScript constants that you can use in ex
! Description
! JavaScript object
|-
| [[javascript/Math/Math Constants|E]]
| [[javascript/Math/constants|E]]
| The mathematical constant e. This is Euler's number, the base of natural logarithms.
| '''Math'''
|-
| [[javascript/Global/Infinity Constant|Infinity]]
| [[javascript/Infinity|Infinity]]
| A value that is larger than the largest floating point number. Negative Infinity (-Infinity) is smaller than the smallest floating point number.
| '''Global'''
|-
| [[javascript/Math/Math Constants|LN2]]
| [[javascript/Math/constants|LN2]]
| The natural logarithm of 2.
| '''Math'''
|-
| [[javascript/Math/Math Constants|LN10]]
| [[javascript/Math/constants|LN10]]
| The natural logarithm of 10.
| '''Math'''
|-
| [[javascript/Math/Math Constants|LOG2E]]
| [[javascript/Math/constants|LOG2E]]
| The base-2 logarithm of e.
| '''Math'''
|-
| [[javascript/Math/Math Constants|LOG10E]]
| [[javascript/Math/constants|LOG10E]]
| The base-10 logarithm of e.
| '''Math'''
|-
| [[javascript/Number/Number Constants|MAX_VALUE]]
| [[javascript/Number/constants|MAX_VALUE]]
| The largest number that can be represented in JavaScript.
| '''Number'''
|-
| [[javascript/Number/Number Constants|MIN_VALUE]]
| [[javascript/Number/constants|MIN_VALUE]]
| The closest number to zero that can be represented in JavaScript.
| '''Number'''
|-
| [[javascript/Number/Number Constants|NaN]]
| [[javascript/Number/constants|NaN]]
| Indicates that an arithmetic expression returned a value that is not a number.
| '''Number'''
|-
| [[javascript/Global/NaN Constant|NaN (Global)]]
| [[javascript/NaN|NaN (Global)]]
| A value that indicates that an expression is not a number.
| '''Global'''
|-
| [[javascript/Number/Number Constants|NEGATIVE_INFINITY]]
| [[javascript/Number/constants|NEGATIVE_INFINITY]]
| A value that is smaller than the smallest floating point number.
| '''Number'''
|-
| [[javascript/Global/null Constant|null Constant]]
| [[javascript/null|null Constant]]
| The value of a variable that does not point to valid data.
| '''Global'''
|-
| [[javascript/Math/Math Constants|PI]]
| [[javascript/Math/constants|PI]]
| Pi. This is the ratio of the circumference of a circle to its diameter.
| '''Math'''
|-
| [[javascript/Number/Number Constants|POSITIVE_INFINITY]]
| [[javascript/Number/constants|POSITIVE_INFINITY]]
| A value that is larger than the largest floating point number.
| '''Number'''
|-
| [[javascript/Math/Math Constants|SQRT1_2]]
| [[javascript/Math/constants|SQRT1_2]]
| The square root of 0.5, or, equivalently, one divided by the square root of 2.
| '''Math'''
|-
| [[javascript/Math/Math Constants|SQRT2]]
| [[javascript/Math/constants|SQRT2]]
| The square root of 2.
| '''Math'''
|-
| [[javascript/Global/undefined Constant|undefined]]
| [[javascript/undefined|undefined]]
| The value of a variable that has been declared but not initialized.
| '''Global'''
|}
Expand Down
2 changes: 1 addition & 1 deletion round-betty/JavaScript-Directives.wiki
Expand Up @@ -8,5 +8,5 @@ The following table lists JavaScript directives.
! Language Element
|-
| Adds certain syntactic and semantic restrictions. Supported in Internet Explorer 10 and Windows Store apps.
| [[javascript/Directives/use strict|use strict]]
| [[javascript/directives/use strict|use strict]]
|}
5 changes: 1 addition & 4 deletions round-betty/JavaScript-Errors.wiki
Expand Up @@ -7,9 +7,6 @@ The following table lists the types of JavaScript errors.
! For more information about
! See
|-
| List of JavaScript run-time errors
| [[javascript/Errors/Run time|Run-time Errors]]
|-
| List of JavaScript syntax errors
| [[javascript/Errors/Syntax|Syntax Errors]]
| [[javascript/errors/syntax|Syntax Errors]]
|}

0 comments on commit d9b394d

Please sign in to comment.