2015-03-23 23:20:19 -04:00
|
|
|
// MDN Links
|
|
|
|
|
|
|
|
/* These links are for Bonfires. Each key/value pair is used to render a Bonfire with approrpiate links.
|
|
|
|
Making an effort to keep methods in alphabetical order will help others behind you.
|
2015-03-23 23:55:24 -04:00
|
|
|
|
|
|
|
The text of the key is what the link text will be, e.g. <a href="https://developer ...">Global Array Object</a>
|
2015-03-23 23:20:19 -04:00
|
|
|
|
|
|
|
*/
|
|
|
|
var links =
|
|
|
|
{
|
|
|
|
// ========= GLOBAL OBJECTS
|
2015-03-23 23:55:24 -04:00
|
|
|
"Global Array Object" : "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array",
|
|
|
|
"Global Object" : "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object",
|
|
|
|
"Global String Object" : "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String",
|
2015-03-23 23:20:19 -04:00
|
|
|
|
|
|
|
// ======== STRING METHODS
|
2015-03-23 23:55:24 -04:00
|
|
|
"String.split()" : "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split",
|
2015-03-23 23:20:19 -04:00
|
|
|
|
|
|
|
// ======== ARRAY METHODS
|
2015-03-23 23:55:24 -04:00
|
|
|
"Array.join()" : "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/join",
|
|
|
|
"Array.reverse()": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse"
|
2015-03-23 23:20:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = links;
|