From cb9e359a51c3249d8f5157db69d43fd413ddeda6 Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 14:45:12 +0100 Subject: unslug ca: move --- .../manipulating_documents/index.html | 147 +++++++++ files/ca/learn/javascript/objects/index.html | 362 +++++++++++++++++++++ 2 files changed, 509 insertions(+) create mode 100644 files/ca/learn/javascript/client-side_web_apis/manipulating_documents/index.html create mode 100644 files/ca/learn/javascript/objects/index.html (limited to 'files/ca/learn/javascript') diff --git a/files/ca/learn/javascript/client-side_web_apis/manipulating_documents/index.html b/files/ca/learn/javascript/client-side_web_apis/manipulating_documents/index.html new file mode 100644 index 0000000000..83a6f18c98 --- /dev/null +++ b/files/ca/learn/javascript/client-side_web_apis/manipulating_documents/index.html @@ -0,0 +1,147 @@ +--- +title: JavaScript i CSS +slug: Web/Guide/CSS/Inici_en_CSS/JavaScript +tags: + - CSS + - 'CSS:Getting_Started' + - Example + - Guide + - Intermediate + - NeedsUpdate + - Web +translation_of: Learn/JavaScript/Client-side_web_APIs/Manipulating_documents +translation_of_original: Web/Guide/CSS/Getting_started/JavaScript +--- +

{{ CSSTutorialTOC() }}

+ +

Aquesta és la primera secció de la Part II del tutorial CSS. La Part II conté alguns exemples que mostren l'abast de CSS utilitzat amb altres tecnologies web i Mozilla.

+ +

Cada pàgina en la part II il·lustra com interactua amb CSS alguna altra tecnologia. Aquestes pàgines no estan dissenyades per ensenyar com utilitzar aquestes altres tecnologies. Aneu a altres tutorials per aprendre sobre elles en detall.

+ +

En lloc d'això, aquestes pàgines estan dissenyades per il·lustrar els molts usos de CSS. Per utilitzar aquestes pàgines, heu de tenir algun coneixement de CSS, però no cal cap coneixement d'unes altres tecnologies.

+ +

Secció anterior (Part I): Mitjà
+ Secció següent: SVG

+ +

Informació: JavaScript

+ +

JavaScript és un llenguatge de programació. JavaScript s'utilitza àmpliament per proporcionar interactivitat en els llocs web i aplicacions.

+ +

JavaScript pot interactuar amb les fulles d'estil, permetent-li escriure programes que canvien l'estil d'un document de forma dinàmica.

+ +

Hi ha tres maneres de fer això:

+ + + + + + + + + + +
Més detalls
Per obtenir més informació sobre JavaScript, vegeu la pàgina de JavaScript en aquest wiki.
+ +

Acció: Una demostració de JavaScript

+ +

Feu un nou document HTML, doc5.html. Copieu i enganxeu el contingut d'aquí, assegurar-vos de deplaçar-vos per obtenir tota ella;

+ +
+
<!DOCTYPE html>
+<html>
+
+<head>
+<title>Mozilla CSS Getting Started - JavaScript demonstration</title>
+<link rel="stylesheet" type="text/css" href="style5.css" />
+<script type="text/javascript" src="script5.js"></script>
+</head>
+
+<body>
+<h1>JavaScript sample</h1>
+<div id="square"></div>
+<button>Click Me</button>
+
+</body>
+</html>
+
+
+ +

Feu una nova fulla d'estil CSS, style5.css. Copieu i enganxeu el contingut d'aquí:

+ +
+
  #square {
+    width: 120px;
+    height: 120px;
+    border: 2px inset gray;
+    margin-bottom: 1em;
+  }
+
+  button {
+    padding: .5em 2em;
+  }
+
+ +

Feu un nou arxiu de text, script5.js. Copieu i enganxeu el contingut d'aquí:

+ +
+
// JavaScript demonstration
+var changeBg = function (event) {
+    console.log("method called");
+    var me = event.target
+    ,   square = document.getElementById("square");
+    square.style.backgroundColor = "#ffaa44";
+    me.setAttribute("disabled", "disabled");
+    setTimeout(function () { clearDemo(me) }, 2000);
+}
+
+function clearDemo(button) {
+    var square = document.getElementById("square");
+    square.style.backgroundColor = "transparent";
+    button.removeAttribute("disabled");
+}
+
+var button = document.querySelector("button");
+button.addEventListener("click", changeBg);
+console.log(button);
+
+
+ +

Obriu el document en el navegador i premeu el botó o vegeu una mostra del treball a continuació.

+ +

{{ EmbedLiveSample('Action:_A_JavaScript_demonstration', 320,320) }}

+ +
Notes importants sobre aquesta demostració: + + +
+ +
+

De fet, el document HTML anterior pot tenir una condició de competència  (informació relacionada en aquesta pàgina W3C), ja que té l'element script dins de l'element head podent inicar-se l'execució del codi JavaScript abans que la pàgina acabi de carregar-se i el codi no funcionarà perquè la variable button serà nul.la. En moure l'element script sota de l'element button (just damunt de l'etiqueta de tancament body) en el marcat HTML hauria de resoldre aquest problema.

+
+ + + + + + + + +
Repte
Canvieu el script perquè el quadre salti a la dreta 20 em quan el seu color canviï, i salti cap a enrere després.
+ +

Veure la solució per el repte.

+ +

I ara què?

+ +

Si teniu dificultats per entendre aquesta pàgina o si teniu altres comentaris al respecte, si us plau, contribuïu a la vostre pàgina de discussió.

+ +

En aquesta demostració, el document HTML vincula el script tot i que només l'element button utilitza el script. Mozilla estén CSS de manera que pugui vincular codi JavaScript (i també contingut i altres fulles d'estil) per als elements seleccionats. La pàgina següent mostra això: vincles XBL

diff --git a/files/ca/learn/javascript/objects/index.html b/files/ca/learn/javascript/objects/index.html new file mode 100644 index 0000000000..187f7930f4 --- /dev/null +++ b/files/ca/learn/javascript/objects/index.html @@ -0,0 +1,362 @@ +--- +title: Introducció al Javascript orientat a Objectes +slug: Web/JavaScript/Introducció_al_Javascript_orientat_a_Objectes +translation_of: Learn/JavaScript/Objects +translation_of_original: Web/JavaScript/Introduction_to_Object-Oriented_JavaScript +--- +
{{jsSidebar("Introductory")}}
+ +

JavaScript és orientat a objectes des del nucli, amb unes capacitats potents, flexibles {{Glossary("OOP")}}. Aquest article comença amb la introducció de la programació orientada a objectes, després es revisa el model d'objectes de Javascript, i finalment es mostren els conceptes de la programació orientada a objectes en JavaScript.

+ +

Revisió de JavaScript

+ +

Si no us sentiu segurs amb els conceptes de Javascript com ara variables, tipus, funcions, i àmbits podeu llegir sobre aquests temes en Una reintroducció a JavaScript. També podeu consultar la Guia de JavaScript.

+ +

Programació orientada a Objectes

+ +

La programació orientada a Objectes és un paradigma de programació que usa l'abstracció per crear models basants en el món real. Fa servir diverseses tècniques de paradigmes previament establerts, inclosa la modularitat, poliformisme, i l'encapsulament. Avui, moltes llengües de programació (com Java, JavaScript, C#, C++, Python, PHP, Ruby i Objective-C) suporten la programació orientada a Objectes (POO).

+ +

La programació orientada a Objectes es pot entendre com el disseny de software fent servir una col·lecció d'objectes que cooperen, al contrari de la visió tradicional en el qual un programa es vist com una col·lecció de funcions, o simplement com una llista d'instruccions per a un ordinador. En POO, cada objecte és capaç de rebre missatges, processar data, i enviar missatges a altres objectes. Cada objecte pot ser entès com una petita màquina independent amb un rol diferent o amb responsabilitat.

+ +

La programació orientada a Objectes intenta promoure una major flexibilitat, mantenibilitat en programació, i és àmpliament popular en enginyeria de software a gran esala. En virtut de la seva forta èmfasi en modularitat, el codi orientat a objecte intenta ser més simple de desenvolupar i més facil d'entendre després, es presta a una anàlisi més directa, codificació, i comprensió de situacions complexes i procediments en comptes d'altres mètodes de programació menys modulars.1

+ +

Terminologia

+ +
+
{{Glossary("Namespace")}}
+
Un contenidor que permet als desenvolupadors agrupar totes les funcionalitats sota un nom únic d'aplicació específica.
+
{{Glossary("Class")}}
+
Defineix les característiques de l'objecte. És la definició d'una plantilla de variables i mètodes d'un objecte.
+
{{Glossary("Object")}}
+
Una instància d'una classe.
+
{{Glossary("Property")}}
+
Una característca d'un objecte, com ara un color.
+
{{Glossary("Method")}}
+
Una capacitat d'un objecte, com ara caminar. És una subrutina o funció associada amb una classe.
+
{{Glossary("Constructor")}}
+
Un mètode que es crida en el moment d'instanciació d'un objecte. Normalment té el mateix nom que el de la classe que el conté.
+
{{Glossary("Inheritance")}}
+
Una classe pot heretar les característiques d'una altra classe.
+
{{Glossary("Encapsulation")}}
+
Una manera d'agrupar les dades i mètodes que es fan servir juntes.
+
{{Glossary("Abstraction")}}
+
La conjunció d'una herència complexa, mètodes, les propietats d'un objecte, han de ser capaces de simular una realitat a modelar.
+
{{Glossary("Polymorphism")}}
+
Poli significa "molts" i morfisme significa "formes". Classes diferents poden definir el mateix mètode o propietat.
+
+ +

Per una descripció més extensa sobre la programació orientada a objectes vegeu {interwiki("wikipedia", "Object-oriented programming")}} a la Viquipèdia.

+ +

Programació basada en prototipus

+ +

Programació basat en prototipus és un estil de programació orientada a objectes que no fa ús de les classes. En el seu lloc, la reutilització del comportament (conegut com a herència en llenguatges basats en classes) es porta a terme a través d'un procés de decoració (o d'ampliació) on els objectes que ja existeixen serveixen com a prototipus. Aquest model també és conegut com a model sense classes, orientat a prototip, o programació basadad en instàncies.

+ +

L'exemple original (i més canònic) d'un llenguatge basat en prototipus és el llenguatge de programació {{interwiki("wikipedia", "Self (programming language)", "Self")}} desenvolupat per David Ungar i Randall Smith. Tanmateix, l'estil de programació sense classes s'ha anat fent més i més popular, i ha sigut adoptat per llenguatges de programació com JavaScript, Cecil, NewtonScript, Io, MOO, REBOL, Kevo, Squeak (quan s'utilitza el marc Viewer per manipular components Morphic), i altres.1

+ +

Programació orientada a Objectes de JavaScript

+ +

Namespace

+ +

Un namespace és un contenidor el qual permet als desenvolupadors agrupar totes les funcionalitats sota un únic, nom d'aplicació específic. En JavaScript un namespace és només un altre objecte que conté mètodes, propietats, i objectes.

+ +
+

Nota: Es important remarcar que en JavaScript, no hi ha diferència de nivell d'idioma entre els objectes regulars i els namespaces. Això dista d'altres llenguatges orientats a objectes, i pot resultat confús als programadors nous en JavaScript.

+
+ +

La idea darrera la creació d'un namespace en JavaScript és simple: Un objecte global és creat i totes les variables, metòdes, i funcions es converteixen en propietats d'aquest objecte. L'ús de namespaces també minimitza la possibilitat de conflictes de noms en l'aplicació, ja que cada objecte d'aplicació son propietats d'un objecte global d'aplicació definit.

+ +

Creem un objecte global anomenat MYAPP:

+ +
// global namespace
+var MYAPP = MYAPP || {};
+ +

En el codi de mostra superior, primer hem comprovat si MYAPP ja està definit (ja sigui en el mateix arxiu o en un altre arxiu). En cas de ser així, s'usa l'objecte global MYAPP existent, del contrari es crea un objecte buit anomenat MYAPP el qual encapsula el mètode, funcions, variables, i objectes.

+ +

També podem crear sub-namespaces:

+ +
// sub namespace
+MYAPP.event = {};
+ +

Abaix es troba la sintaxi de codi per crear un namespace i afegir variables, funcions, i un mètode:

+ +
// Create container called MYAPP.commonMethod for common method and properties
+MYAPP.commonMethod = {
+  regExForName: "", // define regex for name validation
+  regExForPhone: "", // define regex for phone no validation
+  validateName: function(name){
+    // Do something with name, you can access regExForName variable
+    // using "this.regExForName"
+  },
+
+  validatePhoneNo: function(phoneNo){
+    // do something with phone number
+  }
+}
+
+// Object together with the method declarations
+MYAPP.event = {
+    addListener: function(el, type, fn) {
+    //  code stuff
+    },
+   removeListener: function(el, type, fn) {
+    // code stuff
+   },
+   getEvent: function(e) {
+   // code stuff
+   }
+
+   // Can add another method and properties
+}
+
+// Syntax for Using addListener method:
+MYAPP.event.addListener("yourel", "type", callback);
+ +

Objectes estàndards integrats

+ +

JavaScript té alguns objectes inclosos en el seu nucli, per exemple, trobem objectes come Math, Object, Array, i String. L'exemple d'abaix ens mostra com fer servir l'objecte Math per aconseguir números aleatoris usant el seu mètode random().

+ +
console.log(Math.random());
+
+ +
Nota: Aquest i tots els exemples següents suposen que la funció anomenada {{domxref("console.log()")}} es defineix globalment. De fet, la funció console.log() no és part del llenguatge de JavaScript en si, però molts navegadors ho implementen per tal d'ajudar en la depuració.
+ +

Vegeu Referència de JavaScript: Objectes estàndards integrats per una llista d'objectes cor en JavaScript.

+ +

Cada objecte en JavaScript és una instància de l'objecte Object i per tant, n'hereda totes les seves propietats i mètodes.

+ +

Objectes personalitzats

+ +

La classe

+ +

JavaScript és un llenguatge basat en prototipus que no conté cap class statement, el qual si que es pot trobar en C++ o Java. Això és confós a vegades per a programadors acostumats a llenguatges amb el class statement. En el seu lloc, JavaScript fa servir funcions com a classes. Definir duna classe és tan fàcil com definir una funció. En l'exemple d'abaix definim una nova classe anomenada Person.

+ +
var Person = function () {};
+
+ +

L'objecte (instància de classe)

+ +

Per crear una nova instància d'un objecte obj fem servir la declaració new obj, assignant el resultat (el qual és de tipus obj) a una variable per accedir-hi més tard. Una forma alternativa de crear una nova instància és fent servir {{jsxref("Object.create()")}}. Aquesta crearà una instància This will create an uninititalized instance.

+ +

En l'exemple d'adalt definim una classe anomenada Person. En l'exemple següent creem dues instàncies (person1 i person2).

+ +
var person1 = new Person();
+var person2 = new Person();
+
+ +
Nota: Siusplau vegeu {{jsxref("Object.create()")}} per un mètode instantacional nou, addiccional new, additional, instantiation mètode.
+ +

El constructor

+ +

El constructor és cridat en el moment de la instantiation (el moment en que la instància de l'objecte és creat). El constructor és ún mètode de la classe. En JavaScript la funció serveix com el constructor de l'objecte, therefore there is no need to explicitly define a constructor method. Every action declared in the class gets executed at the time of instantiation.

+ +

El constructor es fa servir per establir les propietats de l'objecte o per cridar mè call methods to prepare the object for use. Per afegir mètodes de classes i les seves definicions es necessita una sintaxi diferent que s'explicarà més tard en aquest article.

+ +

En l'exemple d'abaix, el constructor de la classe Person mostra un missatge quan és crea una instànca Person.

+ +
var Person = function () {
+  console.log('instance created');
+};
+
+var person1 = new Person();
+var person2 = new Person();
+
+ +

La propietat (atribut de l'objecte)

+ +

Les propietats són variables contingudes en la classe; cada instància de l'objecte té aquestes propietats. Les propietats són asssignades en el constructor (funció) de la classe de forma que es creen en cada instància.

+ +

Per treballar amb propietats de dins de la classe s'utilitza la paraula clau this, que fa referència a l'objecte actual. Accedir (llegir o escriure) a una propietat fora d'aquesta classe es fa mitjançant la sintaxi: InstanceName.Property; Aquesta és la mateixa sintaxi que es fa servir en C++, Java, i numeroses altres llengües. (Dins la classe, la sintaxi this.Property s'utilitza per obtindre o escriure el valor de les propietats.)

+ +

En l'exemple següent definim la propietat firstName property per la classe Person i ho definim com a instanciació.

+ +
var Person = function (firstName) {
+  this.firstName = firstName;
+  console.log('Person instantiated');
+};
+
+var person1 = new Person('Alice');
+var person2 = new Person('Bob');
+
+// Show the firstName properties of the objects
+console.log('person1 is ' + person1.firstName); // logs "person1 is Alice"
+console.log('person2 is ' + person2.firstName); // logs "person2 is Bob"
+
+ +

Els mètodes

+ +

Els mètodes segueixen la mateixa llògica que les propietats; la diferència es que són funcions i estan definides com a funcions. Cridar un mètode és similar a accedir a una propietat, però s'afegeix () al final the nom del mètode, possiblement amb arguments. Per definir un mètode, s'assigna una funció a una propietat amb nom de la propietat de la classe prototype; el nom que s'assigna a la funció és el mateix que el nom que té el mètode en l'objecte.

+ +

En l'exemple següent definim i usem el mètode sayHello() per la classe Person.

+ +
var Person = function (firstName) {
+  this.firstName = firstName;
+};
+
+Person.prototype.sayHello = function() {
+  console.log("Hello, I'm " + this.firstName);
+};
+
+var person1 = new Person("Alice");
+var person2 = new Person("Bob");
+
+// call the Person sayHello method.
+person1.sayHello(); // logs "Hello, I'm Alice"
+person2.sayHello(); // logs "Hello, I'm Bob"
+
+ +

En JavaScript els mètodes són funcions normals dels objectes que són lligats a un objecte com una propietat, El que vol dir que poden ser invocats "fora del context". Vegeu el codi d'exemple següent:

+ +
var Person = function (firstName) {
+  this.firstName = firstName;
+};
+
+Person.prototype.sayHello = function() {
+  console.log("Hello, I'm " + this.firstName);
+};
+
+var person1 = new Person("Alice");
+var person2 = new Person("Bob");
+var helloFunction = person1.sayHello;
+
+// logs "Hello, I'm Alice"
+person1.sayHello();
+
+// logs "Hello, I'm Bob"
+person2.sayHello();
+
+// logs "Hello, I'm undefined" (or fails
+// with a TypeError in strict mode)
+helloFunction();
+
+// logs true
+console.log(helloFunction === person1.sayHello);
+
+// logs true
+console.log(helloFunction === Person.prototype.sayHello);
+
+// logs "Hello, I'm Alice"
+helloFunction.call(person1);
+ +

Com l'exemple mostra, totes les referències a la funció sayHello — les que existeixen a person1, a Person.prototype, a la variable helloFunction, etc. — fan referència a la mateixa funció. El valor de this durant una crida a la funció depen en com es crida. En el cas comú en que es crida la funció des d'una propietat de l'objecte — person1.sayHello() — this rep el valor de l'objecte d'on prové la propietat (person1), és per això que person1.sayHello() fa servir el nom "Alice" i person2.sayHello() fa servir el nom "Bob". Però si ho cridem d'altres maneres, this rebrà un valor diferent: Cridar-la des d'una variable — helloFunction() — this rep el valor de l'objecte global (window, en navegadors). Al no tenir la propietat firstName aquest objecte (probablement) , acabem amb el resultat "Hello, I'm undefined". (Això és en el mode no estricte; en el mode estricte seria diferent [un error], però per evitar confussions no entrarem aquí en detall.) O podem assignar explícitament el valor de this mitjançant Function#call (o Function#apply), com es mostra al final de l'exemple.

+ +
Nota: Vegeu més sobre this a Function#call i Function#apply
+ +

L'herència

+ +

L'herència és una manera de crear una classe com una versió especialitzada d'una o més classes (JavaScript només suporta l'herència única). La classe especialitzada és communment anomenada el fill, i l'altra classe es comunment anomenada el pare. En JavaScript això s'aconsegueix mitjançant l'assignació d'una instància de la classe pare a la classe fill, i després s'especialitza. En navegadors moderns també es pot usar Object.create per implementar herències.

+ +
+

Nota: JavaScript does no detecta la classe fill prototype.constructor (vegeu Object.prototype), així que ho hem de declarar manualment.

+
+ +

En l'exemple d'abaix, definim la classe Student com una classe fill de Person. Després redefinim el mètode sayHello() i afegim el mètode sayGoodBye().

+ +
// Define the Person constructor
+var Person = function(firstName) {
+  this.firstName = firstName;
+};
+
+// Add a couple of methods to Person.prototype
+Person.prototype.walk = function(){
+  console.log("I am walking!");
+};
+
+Person.prototype.sayHello = function(){
+  console.log("Hello, I'm " + this.firstName);
+};
+
+// Define the Student constructor
+function Student(firstName, subject) {
+  // Call the parent constructor, making sure (using Function#call)
+  // that "this" is set correctly during the call
+  Person.call(this, firstName);
+
+  // Initialize our Student-specific properties
+  this.subject = subject;
+};
+
+// Create a Student.prototype object that inherits from Person.prototype.
+// Note: A common error here is to use "new Person()" to create the
+// Student.prototype. That's incorrect for several reasons, not least
+// that we don't have anything to give Person for the "firstName"
+// argument. The correct place to call Person is above, where we call
+// it from Student.
+Student.prototype = Object.create(Person.prototype); // See note below
+
+// Set the "constructor" property to refer to Student
+Student.prototype.constructor = Student;
+
+// Replace the "sayHello" method
+Student.prototype.sayHello = function(){
+  console.log("Hello, I'm " + this.firstName + ". I'm studying "
+              + this.subject + ".");
+};
+
+// Add a "sayGoodBye" method
+Student.prototype.sayGoodBye = function(){
+  console.log("Goodbye!");
+};
+
+// Example usage:
+var student1 = new Student("Janet", "Applied Physics");
+student1.sayHello();   // "Hello, I'm Janet. I'm studying Applied Physics."
+student1.walk();       // "I am walking!"
+student1.sayGoodBye(); // "Goodbye!"
+
+// Check that instanceof works correctly
+console.log(student1 instanceof Person);  // true
+console.log(student1 instanceof Student); // true
+
+ +

Pel que fa a la línia Student.prototype = Object.create(Person.prototype): En els motors de Javascript més antics sense Object.create, es pot utilitzar tant un "polyfill" (també conegut com a  "falca", vegeu l'article enllaçat), o fer servir una funció que aconegueixi assolir el mateix resultat, tal com:

+ +
function createObject(proto) {
+    function ctor() { }
+    ctor.prototype = proto;
+    return new ctor();
+}
+
+// Usage:
+Student.prototype = createObject(Person.prototype);
+
+ +
Nota: Vegeu Object.create per més informació sobre el que fa, i una falca per a motors més vells.
+ +

L'encapsulació

+ +

En l'exemple anterior, Student no necessita saber com el mètode Person class's walk() és implementat, però tot i així pot fer-lo servir com a mètode; la classe Studentno necessita definir explícitament aquest mètode a no ser que ho volguem canviar. D'això se'n diu encapsulació, per la qual cada classe empaqueta data i mètodes en una sola unitat.

+ +

L'ocultació d'informació és una característica comuna en altres llenguatges sovint com a mètodes/propietats privats i protegits. Tot i que es podria simular alguna cosa com aquesta en JavaScript, no és un requeriment per fer programació orientada a objectes.2

+ +

L'abstracció

+ +

L'abstracció és un mecanisme que permet modelar la part que ens ocupa del problema en el qual estem treballant. Això es pot aconseguir per mitjar de l'herència (especialització), o composició. JavaScript aconsegueix l'especialització per mitjà de l'herència, i la composició per mitjà de deixar a les instàncies de classes ser valors d'atributs d'altres objectes.

+ +

La classe Function de JavaScript hereta de la classe Object (això demostra la especialització del model) i la propietat Function.prototype property és una instància d'Object (Això demostra composició).

+ +
var foo = function () {};
+
+// logs "foo is a Function: true"
+console.log('foo is a Function: ' + (foo instanceof Function));
+
+// logs "foo.prototype is an Object: true"
+console.log('foo.prototype is an Object: ' + (foo.prototype instanceof Object));
+ +

El polimorfisme

+ +

Tal i com tots els mètodes i propietats són definides dins la propietat Prototype, classes diferents poden definir mètodes amb el mateix nom; els mètodes estan en l'àmbit de la classe en la qual estan definits. Això només és cert quan les dues classes no tenen una relació pare-fill (quan un no hereta de l'altre en una cadena d'herència).

+ +

Notes

+ +

Les tècniques presentades en aquesta article per implementar programació orientada a objectes no són les úniques que es poden fer servir en JavaScript, que és molt flexible en termes de com es pot realitzar la programació orientada a objectes.

+ +

De la mateixa manera, les tècniques que s'han mostrat aquí no utilitzen cap hack del llenguatge, ni imiten cap implementació de teories d'objectes d'altres llenguatges.

+ +

Hi ha altres tècniques que proporcionen programació orientada a objectes més avançada en JavaScript, però aquests estan fora de l'abast d'aquest article introductori.

+ +

Referències

+ +
    +
  1. Viquipèdia. "Programació orientada a Objectes"
  2. +
  3. Viquipèdia. "Encapsulació (programació orientada a Objectes)"
  4. +
-- cgit v1.2.3-54-g00ecf From 656b8007e3ac28600241104d0eaa210870561395 Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 14:45:13 +0100 Subject: unslug ca: modify --- files/ca/_redirects.txt | 571 ++- files/ca/_wikihistory.json | 3870 ++++++++++---------- .../cascade_and_inheritance/index.html | 5 +- .../learn/css/building_blocks/index.html | 5 +- .../learn/css/building_blocks/selectors/index.html | 5 +- .../css/building_blocks/styling_tables/index.html | 5 +- .../building_blocks/values_and_units/index.html | 5 +- .../ca/conflicting/learn/css/css_layout/index.html | 5 +- .../first_steps/how_css_is_structured/index.html | 5 +- .../learn/css/first_steps/how_css_works/index.html | 5 +- .../index.html | 6 +- .../index.html | 6 +- .../conflicting/learn/css/first_steps/index.html | 5 +- .../learn/css/styling_text/fundamentals/index.html | 5 +- .../css/styling_text/styling_lists/index.html | 5 +- files/ca/conflicting/web/guide/index.html | 3 +- .../reference/global_objects/boolean/index.html | 3 +- .../reference/global_objects/dataview/index.html | 3 +- .../reference/global_objects/date/index.html | 3 +- .../reference/global_objects/error/index.html | 3 +- .../reference/global_objects/evalerror/index.html | 3 +- .../reference/global_objects/map/index.html | 3 +- .../reference/global_objects/number/index.html | 3 +- .../reference/global_objects/object/index.html | 3 +- .../reference/global_objects/set/index.html | 3 +- .../global_objects/syntaxerror/index.html | 3 +- .../reference/global_objects/weakmap/index.html | 3 +- .../reference/global_objects/weakset/index.html | 3 +- .../web/javascript/reference/operators/index.html | 3 +- .../index.html | 4 +- .../index.html | 4 +- files/ca/glossary/attribute/index.html | 3 +- files/ca/glossary/browser/index.html | 3 +- files/ca/glossary/character/index.html | 3 +- files/ca/glossary/character_encoding/index.html | 3 +- files/ca/glossary/function/index.html | 3 +- files/ca/glossary/ip_address/index.html | 3 +- files/ca/glossary/method/index.html | 3 +- files/ca/glossary/object/index.html | 3 +- files/ca/glossary/object_reference/index.html | 3 +- files/ca/glossary/primitive/index.html | 3 +- files/ca/glossary/property/index.html | 3 +- files/ca/glossary/scope/index.html | 3 +- files/ca/glossary/server/index.html | 3 +- files/ca/glossary/speculative_parsing/index.html | 3 +- files/ca/glossary/tag/index.html | 3 +- files/ca/glossary/value/index.html | 3 +- .../accessibility/what_is_accessibility/index.html | 3 +- .../building_blocks/a_cool_looking_box/index.html | 3 +- .../backgrounds_and_borders/index.html | 3 +- .../cascade_and_inheritance/index.html | 3 +- .../creating_fancy_letterheaded_paper/index.html | 3 +- .../css/building_blocks/debugging_css/index.html | 3 +- .../fundamental_css_comprehension/index.html | 3 +- .../building_blocks/overflowing_content/index.html | 3 +- .../selectors/attribute_selectors/index.html | 3 +- .../selectors/combinators/index.html | 3 +- .../learn/css/building_blocks/selectors/index.html | 3 +- .../pseudo-classes_and_pseudo-elements/index.html | 3 +- .../type_class_and_id_selectors/index.html | 5 +- .../building_blocks/sizing_items_in_css/index.html | 3 +- .../building_blocks/values_and_units/index.html | 3 +- files/ca/learn/css/css_layout/flexbox/index.html | 3 +- files/ca/learn/css/css_layout/floats/index.html | 3 +- files/ca/learn/css/css_layout/grids/index.html | 3 +- files/ca/learn/css/css_layout/index.html | 3 +- .../learn/css/css_layout/introduction/index.html | 3 +- .../ca/learn/css/css_layout/normal_flow/index.html | 3 +- .../ca/learn/css/css_layout/positioning/index.html | 3 +- .../practical_positioning_examples/index.html | 3 +- .../css/css_layout/responsive_design/index.html | 3 +- .../supporting_older_browsers/index.html | 3 +- .../css/first_steps/getting_started/index.html | 3 +- .../first_steps/how_css_is_structured/index.html | 3 +- .../learn/css/first_steps/how_css_works/index.html | 3 +- .../learn/css/first_steps/what_is_css/index.html | 3 +- .../learn/css/styling_text/fundamentals/index.html | 3 +- files/ca/learn/css/styling_text/index.html | 3 +- .../css/styling_text/styling_links/index.html | 3 +- .../css/styling_text/styling_lists/index.html | 3 +- .../styling_text/typesetting_a_homepage/index.html | 3 +- .../ca/learn/css/styling_text/web_fonts/index.html | 3 +- .../forms/basic_native_form_controls/index.html | 3 +- files/ca/learn/forms/form_validation/index.html | 3 +- .../forms/how_to_structure_a_web_form/index.html | 3 +- files/ca/learn/forms/index.html | 3 +- files/ca/learn/forms/your_first_form/index.html | 3 +- .../css_basics/index.html | 5 +- .../dealing_with_files/index.html | 5 +- .../how_the_web_works/index.html | 5 +- .../installing_basic_software/index.html | 5 +- .../javascript_basics/index.html | 5 +- .../publishing_your_website/index.html | 5 +- .../what_will_your_website_look_like/index.html | 5 +- .../author_fast-loading_html_pages/index.html | 3 +- .../advanced_text_formatting/index.html | 3 +- .../creating_hyperlinks/index.html | 3 +- .../introduction_to_html/debugging_html/index.html | 3 +- .../document_and_website_structure/index.html | 3 +- .../getting_started/index.html | 3 +- .../html_text_fundamentals/index.html | 3 +- .../ca/learn/html/introduction_to_html/index.html | 3 +- .../marking_up_a_letter/index.html | 3 +- .../structuring_a_page_of_content/index.html | 3 +- .../the_head_metadata_in_html/index.html | 3 +- .../adding_vector_graphics_to_the_web/index.html | 3 +- .../images_in_html/index.html | 3 +- .../learn/html/multimedia_and_embedding/index.html | 3 +- .../mozilla_splash_page/index.html | 3 +- .../other_embedding_technologies/index.html | 5 +- .../responsive_images/index.html | 3 +- .../video_and_audio_content/index.html | 3 +- files/ca/learn/html/tables/advanced/index.html | 3 +- files/ca/learn/html/tables/basics/index.html | 3 +- files/ca/learn/html/tables/index.html | 3 +- .../html/tables/structuring_planet_data/index.html | 3 +- .../manipulating_documents/index.html | 5 +- files/ca/learn/javascript/objects/index.html | 3 +- files/ca/mdn/at_ten/index.html | 3 +- files/ca/mdn/contribute/processes/index.html | 3 +- files/ca/mdn/yari/index.html | 3 +- files/ca/mozilla/firefox/releases/2/index.html | 3 +- files/ca/orphaned/mdn/community/index.html | 3 +- .../howto/create_an_mdn_account/index.html | 3 +- .../orphaned/web/html/element/command/index.html | 3 +- .../orphaned/web/html/element/element/index.html | 3 +- .../web/html/global_attributes/dropzone/index.html | 3 +- .../global_objects/array/prototype/index.html | 3 +- .../tutorial/advanced_animations/index.html | 3 +- .../tutorial/applying_styles_and_colors/index.html | 3 +- .../tutorial/basic_animations/index.html | 3 +- .../api/canvas_api/tutorial/basic_usage/index.html | 3 +- .../api/canvas_api/tutorial/compositing/index.html | 3 +- .../canvas_api/tutorial/drawing_text/index.html | 3 +- .../pixel_manipulation_with_canvas/index.html | 3 +- .../canvas_api/tutorial/transformations/index.html | 3 +- files/ca/web/css/_colon_is/index.html | 7 +- .../web/css/adjacent_sibling_combinator/index.html | 3 +- files/ca/web/css/attribute_selectors/index.html | 3 +- files/ca/web/css/child_combinator/index.html | 3 +- files/ca/web/css/class_selectors/index.html | 3 +- .../introduction_to_the_css_box_model/index.html | 3 +- .../mastering_margin_collapsing/index.html | 3 +- files/ca/web/css/css_selectors/index.html | 3 +- .../index.html | 7 +- files/ca/web/css/descendant_combinator/index.html | 3 +- .../web/css/general_sibling_combinator/index.html | 3 +- files/ca/web/css/id_selectors/index.html | 3 +- files/ca/web/css/reference/index.html | 5 +- files/ca/web/css/syntax/index.html | 3 +- files/ca/web/css/type_selectors/index.html | 3 +- files/ca/web/css/universal_selectors/index.html | 3 +- files/ca/web/guide/ajax/getting_started/index.html | 3 +- files/ca/web/guide/graphics/index.html | 3 +- .../using_html_sections_and_outlines/index.html | 3 +- .../web/guide/mobile/a_hybrid_approach/index.html | 3 +- files/ca/web/guide/mobile/index.html | 3 +- .../guide/mobile/mobile-friendliness/index.html | 3 +- .../ca/web/guide/mobile/separate_sites/index.html | 3 +- files/ca/web/html/inline_elements/index.html | 5 +- .../ca/web/javascript/about_javascript/index.html | 3 +- .../guide/expressions_and_operators/index.html | 3 +- .../web/javascript/guide/introduction/index.html | 3 +- files/ca/web/javascript/reference/about/index.html | 3 +- .../reference/classes/constructor/index.html | 3 +- .../ca/web/javascript/reference/classes/index.html | 3 +- .../javascript/reference/classes/static/index.html | 3 +- .../reference/errors/read-only/index.html | 3 +- .../reference/functions/rest_parameters/index.html | 3 +- .../global_objects/array/entries/index.html | 3 +- .../global_objects/array/every/index.html | 3 +- .../reference/global_objects/array/fill/index.html | 3 +- .../global_objects/array/filter/index.html | 3 +- .../reference/global_objects/array/find/index.html | 3 +- .../global_objects/array/findindex/index.html | 3 +- .../global_objects/array/foreach/index.html | 3 +- .../global_objects/array/includes/index.html | 3 +- .../reference/global_objects/array/index.html | 3 +- .../global_objects/array/indexof/index.html | 3 +- .../global_objects/array/isarray/index.html | 3 +- .../reference/global_objects/array/join/index.html | 3 +- .../reference/global_objects/array/keys/index.html | 3 +- .../global_objects/array/lastindexof/index.html | 3 +- .../global_objects/array/length/index.html | 3 +- .../reference/global_objects/array/map/index.html | 3 +- .../reference/global_objects/array/of/index.html | 3 +- .../reference/global_objects/array/pop/index.html | 3 +- .../reference/global_objects/array/push/index.html | 3 +- .../global_objects/array/reduce/index.html | 3 +- .../global_objects/array/reverse/index.html | 3 +- .../global_objects/array/shift/index.html | 3 +- .../global_objects/array/slice/index.html | 3 +- .../reference/global_objects/array/some/index.html | 3 +- .../global_objects/array/splice/index.html | 3 +- .../reference/global_objects/boolean/index.html | 3 +- .../global_objects/boolean/tosource/index.html | 3 +- .../global_objects/boolean/tostring/index.html | 3 +- .../global_objects/boolean/valueof/index.html | 3 +- .../global_objects/date/getdate/index.html | 3 +- .../global_objects/date/getday/index.html | 3 +- .../global_objects/date/getfullyear/index.html | 3 +- .../global_objects/date/gethours/index.html | 3 +- .../global_objects/date/getmilliseconds/index.html | 3 +- .../global_objects/date/getminutes/index.html | 3 +- .../global_objects/date/getmonth/index.html | 3 +- .../global_objects/date/getseconds/index.html | 3 +- .../global_objects/date/gettime/index.html | 3 +- .../date/gettimezoneoffset/index.html | 3 +- .../global_objects/date/getutcdate/index.html | 3 +- .../global_objects/date/getutcday/index.html | 3 +- .../global_objects/date/getutcfullyear/index.html | 3 +- .../global_objects/date/getutchours/index.html | 3 +- .../date/getutcmilliseconds/index.html | 3 +- .../global_objects/date/getutcminutes/index.html | 3 +- .../global_objects/date/getutcmonth/index.html | 3 +- .../global_objects/date/getutcseconds/index.html | 3 +- .../global_objects/date/getyear/index.html | 3 +- .../reference/global_objects/date/index.html | 3 +- .../reference/global_objects/date/now/index.html | 3 +- .../global_objects/date/setdate/index.html | 3 +- .../global_objects/date/setfullyear/index.html | 3 +- .../global_objects/date/sethours/index.html | 3 +- .../global_objects/date/setmilliseconds/index.html | 3 +- .../global_objects/date/setminutes/index.html | 3 +- .../global_objects/date/setmonth/index.html | 3 +- .../global_objects/date/setseconds/index.html | 3 +- .../global_objects/date/settime/index.html | 3 +- .../global_objects/date/setutcdate/index.html | 3 +- .../global_objects/date/setutcfullyear/index.html | 3 +- .../global_objects/date/setutchours/index.html | 3 +- .../date/setutcmilliseconds/index.html | 3 +- .../global_objects/date/setutcminutes/index.html | 3 +- .../global_objects/date/setutcmonth/index.html | 3 +- .../global_objects/date/setutcseconds/index.html | 3 +- .../global_objects/date/setyear/index.html | 3 +- .../global_objects/date/todatestring/index.html | 3 +- .../global_objects/date/togmtstring/index.html | 3 +- .../global_objects/date/toisostring/index.html | 3 +- .../global_objects/date/tojson/index.html | 3 +- .../global_objects/date/tostring/index.html | 3 +- .../global_objects/date/totimestring/index.html | 3 +- .../reference/global_objects/date/utc/index.html | 3 +- .../global_objects/date/valueof/index.html | 3 +- .../global_objects/error/columnnumber/index.html | 3 +- .../global_objects/error/filename/index.html | 3 +- .../reference/global_objects/error/index.html | 3 +- .../global_objects/error/linenumber/index.html | 3 +- .../global_objects/error/message/index.html | 3 +- .../reference/global_objects/error/name/index.html | 3 +- .../global_objects/error/stack/index.html | 3 +- .../global_objects/error/tosource/index.html | 3 +- .../global_objects/error/tostring/index.html | 3 +- .../javascript/reference/global_objects/index.html | 3 +- .../reference/global_objects/infinity/index.html | 3 +- .../reference/global_objects/json/index.html | 3 +- .../reference/global_objects/map/clear/index.html | 3 +- .../reference/global_objects/map/delete/index.html | 3 +- .../global_objects/map/entries/index.html | 3 +- .../global_objects/map/foreach/index.html | 3 +- .../reference/global_objects/map/get/index.html | 3 +- .../reference/global_objects/map/has/index.html | 3 +- .../reference/global_objects/map/index.html | 3 +- .../reference/global_objects/map/keys/index.html | 3 +- .../reference/global_objects/map/set/index.html | 3 +- .../reference/global_objects/map/size/index.html | 3 +- .../reference/global_objects/map/values/index.html | 3 +- .../reference/global_objects/math/abs/index.html | 3 +- .../reference/global_objects/math/acos/index.html | 3 +- .../reference/global_objects/math/acosh/index.html | 3 +- .../reference/global_objects/math/asin/index.html | 3 +- .../reference/global_objects/math/asinh/index.html | 3 +- .../reference/global_objects/math/atan/index.html | 3 +- .../reference/global_objects/math/atan2/index.html | 3 +- .../reference/global_objects/math/atanh/index.html | 3 +- .../reference/global_objects/math/cbrt/index.html | 3 +- .../reference/global_objects/math/ceil/index.html | 3 +- .../reference/global_objects/math/clz32/index.html | 3 +- .../reference/global_objects/math/cos/index.html | 3 +- .../reference/global_objects/math/cosh/index.html | 3 +- .../reference/global_objects/math/e/index.html | 3 +- .../reference/global_objects/math/exp/index.html | 3 +- .../reference/global_objects/math/expm1/index.html | 3 +- .../reference/global_objects/math/floor/index.html | 3 +- .../global_objects/math/fround/index.html | 3 +- .../reference/global_objects/math/hypot/index.html | 3 +- .../reference/global_objects/math/imul/index.html | 3 +- .../reference/global_objects/math/index.html | 3 +- .../reference/global_objects/math/ln10/index.html | 3 +- .../reference/global_objects/math/ln2/index.html | 3 +- .../reference/global_objects/math/log/index.html | 3 +- .../reference/global_objects/math/log10/index.html | 3 +- .../global_objects/math/log10e/index.html | 3 +- .../reference/global_objects/math/log1p/index.html | 3 +- .../reference/global_objects/math/log2/index.html | 3 +- .../reference/global_objects/math/log2e/index.html | 3 +- .../reference/global_objects/math/max/index.html | 3 +- .../reference/global_objects/math/min/index.html | 3 +- .../reference/global_objects/math/pi/index.html | 3 +- .../reference/global_objects/math/pow/index.html | 3 +- .../global_objects/math/random/index.html | 3 +- .../reference/global_objects/math/round/index.html | 3 +- .../reference/global_objects/math/sign/index.html | 3 +- .../reference/global_objects/math/sin/index.html | 3 +- .../reference/global_objects/math/sinh/index.html | 3 +- .../reference/global_objects/math/sqrt/index.html | 3 +- .../global_objects/math/sqrt1_2/index.html | 3 +- .../reference/global_objects/math/sqrt2/index.html | 3 +- .../reference/global_objects/math/tan/index.html | 3 +- .../reference/global_objects/math/tanh/index.html | 3 +- .../reference/global_objects/math/trunc/index.html | 3 +- .../reference/global_objects/nan/index.html | 3 +- .../reference/global_objects/null/index.html | 3 +- .../global_objects/number/epsilon/index.html | 3 +- .../reference/global_objects/number/index.html | 3 +- .../global_objects/number/isfinite/index.html | 3 +- .../global_objects/number/isinteger/index.html | 3 +- .../global_objects/number/isnan/index.html | 3 +- .../global_objects/number/issafeinteger/index.html | 3 +- .../number/max_safe_integer/index.html | 3 +- .../global_objects/number/max_value/index.html | 3 +- .../number/min_safe_integer/index.html | 3 +- .../global_objects/number/min_value/index.html | 3 +- .../reference/global_objects/number/nan/index.html | 3 +- .../number/negative_infinity/index.html | 3 +- .../global_objects/number/parsefloat/index.html | 3 +- .../global_objects/number/parseint/index.html | 3 +- .../number/positive_infinity/index.html | 3 +- .../global_objects/number/toexponential/index.html | 3 +- .../global_objects/number/tofixed/index.html | 3 +- .../global_objects/number/toprecision/index.html | 3 +- .../global_objects/number/tostring/index.html | 3 +- .../reference/global_objects/parsefloat/index.html | 3 +- .../reference/global_objects/set/add/index.html | 3 +- .../reference/global_objects/set/clear/index.html | 3 +- .../reference/global_objects/set/delete/index.html | 3 +- .../global_objects/set/entries/index.html | 3 +- .../reference/global_objects/set/has/index.html | 3 +- .../reference/global_objects/set/index.html | 3 +- .../reference/global_objects/set/values/index.html | 3 +- .../global_objects/string/anchor/index.html | 3 +- .../reference/global_objects/string/big/index.html | 3 +- .../global_objects/string/blink/index.html | 3 +- .../global_objects/string/bold/index.html | 3 +- .../global_objects/string/charat/index.html | 3 +- .../global_objects/string/concat/index.html | 3 +- .../global_objects/string/endswith/index.html | 3 +- .../global_objects/string/fixed/index.html | 3 +- .../global_objects/string/fontcolor/index.html | 3 +- .../global_objects/string/fontsize/index.html | 3 +- .../global_objects/string/fromcharcode/index.html | 3 +- .../reference/global_objects/string/index.html | 3 +- .../global_objects/string/indexof/index.html | 3 +- .../global_objects/string/italics/index.html | 3 +- .../global_objects/string/length/index.html | 3 +- .../global_objects/string/link/index.html | 3 +- .../global_objects/string/normalize/index.html | 3 +- .../global_objects/string/small/index.html | 3 +- .../global_objects/string/startswith/index.html | 3 +- .../reference/global_objects/string/sub/index.html | 3 +- .../global_objects/string/substr/index.html | 3 +- .../reference/global_objects/string/sup/index.html | 3 +- .../string/tolocalelowercase/index.html | 3 +- .../string/tolocaleuppercase/index.html | 3 +- .../global_objects/string/tolowercase/index.html | 3 +- .../global_objects/string/tostring/index.html | 3 +- .../global_objects/string/touppercase/index.html | 3 +- .../global_objects/string/trim/index.html | 3 +- .../global_objects/string/trimend/index.html | 3 +- .../global_objects/string/trimstart/index.html | 3 +- .../global_objects/syntaxerror/index.html | 3 +- .../reference/global_objects/undefined/index.html | 3 +- files/ca/web/javascript/reference/index.html | 3 +- .../reference/operators/comma_operator/index.html | 3 +- .../operators/conditional_operator/index.html | 3 +- .../reference/operators/function/index.html | 3 +- .../reference/operators/grouping/index.html | 3 +- .../web/javascript/reference/operators/index.html | 3 +- .../reference/operators/super/index.html | 3 +- .../reference/operators/typeof/index.html | 3 +- .../javascript/reference/operators/void/index.html | 3 +- .../reference/operators/yield/index.html | 3 +- .../reference/statements/block/index.html | 3 +- .../reference/statements/break/index.html | 3 +- .../reference/statements/continue/index.html | 3 +- .../reference/statements/debugger/index.html | 3 +- .../reference/statements/do...while/index.html | 3 +- .../reference/statements/empty/index.html | 3 +- .../reference/statements/export/index.html | 3 +- .../reference/statements/for...of/index.html | 3 +- .../javascript/reference/statements/for/index.html | 3 +- .../reference/statements/function/index.html | 3 +- .../reference/statements/if...else/index.html | 3 +- .../web/javascript/reference/statements/index.html | 3 +- .../reference/statements/return/index.html | 3 +- .../reference/statements/throw/index.html | 3 +- .../reference/statements/while/index.html | 3 +- files/ca/web/opensearch/index.html | 3 +- files/ca/web/progressive_web_apps/index.html | 3 +- .../responsive/media_types/index.html | 5 +- files/ca/web/svg/tutorial/svg_and_css/index.html | 5 +- 400 files changed, 3242 insertions(+), 2459 deletions(-) (limited to 'files/ca/learn/javascript') diff --git a/files/ca/_redirects.txt b/files/ca/_redirects.txt index 6cf87b3187..2a95ee3217 100644 --- a/files/ca/_redirects.txt +++ b/files/ca/_redirects.txt @@ -1,23 +1,75 @@ # FROM-URL TO-URL /ca/docs/AJAX /ca/docs/Web/Guide/AJAX -/ca/docs/AJAX/Primers_passos /ca/docs/Web/Guide/AJAX/Primers_passos -/ca/docs/AJAX:Primers_passos /ca/docs/Web/Guide/AJAX/Primers_passos +/ca/docs/AJAX/Primers_passos /ca/docs/Web/Guide/AJAX/Getting_Started +/ca/docs/AJAX:Primers_passos /ca/docs/Web/Guide/AJAX/Getting_Started +/ca/docs/Addició_de_motors_de_cerca_a_les_pàgines_web /ca/docs/Web/OpenSearch /ca/docs/CSS /ca/docs/Web/CSS -/ca/docs/Firefox_2 /ca/docs/Firefox_2_per_a_desenvolupadors -/ca/docs/Firefox_2.0_per_a_desenvolupadors /ca/docs/Firefox_2_per_a_desenvolupadors +/ca/docs/Firefox_2 /ca/docs/Mozilla/Firefox/Releases/2 +/ca/docs/Firefox_2.0_per_a_desenvolupadors /ca/docs/Mozilla/Firefox/Releases/2 +/ca/docs/Firefox_2_per_a_desenvolupadors /ca/docs/Mozilla/Firefox/Releases/2 +/ca/docs/Glossary/Atribut /ca/docs/Glossary/Attribute +/ca/docs/Glossary/Caràcter /ca/docs/Glossary/Character +/ca/docs/Glossary/Codificació_de_caràcters /ca/docs/Glossary/character_encoding +/ca/docs/Glossary/Etiqueta /ca/docs/Glossary/Tag +/ca/docs/Glossary/Funció /ca/docs/Glossary/Function +/ca/docs/Glossary/Mètode /ca/docs/Glossary/Method +/ca/docs/Glossary/Navegador /ca/docs/Glossary/Browser +/ca/docs/Glossary/Objecte /ca/docs/Glossary/Object +/ca/docs/Glossary/Primitiu /ca/docs/Glossary/Primitive +/ca/docs/Glossary/Propietat /ca/docs/Glossary/property +/ca/docs/Glossary/Servidor /ca/docs/Glossary/Server +/ca/docs/Glossary/Valor /ca/docs/Glossary/Value +/ca/docs/Glossary/adreça_IP /ca/docs/Glossary/IP_Address +/ca/docs/Glossary/referències_a_objectes /ca/docs/Glossary/Object_reference +/ca/docs/Glossary/Àmbit /ca/docs/Glossary/Scope /ca/docs/JavaScript /ca/docs/Web/JavaScript -/ca/docs/JavaScript/Referencia /ca/docs/Web/JavaScript/Referencia -/ca/docs/JavaScript/Referencia/Sobre /ca/docs/Web/JavaScript/Referencia/Sobre +/ca/docs/JavaScript/Referencia /ca/docs/Web/JavaScript/Reference +/ca/docs/JavaScript/Referencia/Sobre /ca/docs/Web/JavaScript/Reference/About +/ca/docs/Learn/Accessibility/Que_es_accessibilitat /ca/docs/Learn/Accessibility/What_is_accessibility +/ca/docs/Learn/CSS/Building_blocks/Cascada_i_herència /ca/docs/Learn/CSS/Building_blocks/Cascade_and_inheritance +/ca/docs/Learn/CSS/Building_blocks/Depurar_el_CSS /ca/docs/Learn/CSS/Building_blocks/Debugging_CSS +/ca/docs/Learn/CSS/Building_blocks/Desbordament_de_contingut /ca/docs/Learn/CSS/Building_blocks/Overflowing_content +/ca/docs/Learn/CSS/Building_blocks/Dimensionar_elements_en_CSS /ca/docs/Learn/CSS/Building_blocks/Sizing_items_in_CSS +/ca/docs/Learn/CSS/Building_blocks/Fons_i_vores /ca/docs/Learn/CSS/Building_blocks/Backgrounds_and_borders +/ca/docs/Learn/CSS/Building_blocks/Selectors_CSS /ca/docs/Learn/CSS/Building_blocks/Selectors +/ca/docs/Learn/CSS/Building_blocks/Selectors_CSS/Combinadors /ca/docs/Learn/CSS/Building_blocks/Selectors/Combinators +/ca/docs/Learn/CSS/Building_blocks/Selectors_CSS/Pseudo-classes_and_pseudo-elements /ca/docs/Learn/CSS/Building_blocks/Selectors/Pseudo-classes_and_pseudo-elements +/ca/docs/Learn/CSS/Building_blocks/Selectors_CSS/Selectors_atribut /ca/docs/Learn/CSS/Building_blocks/Selectors/Attribute_selectors +/ca/docs/Learn/CSS/Building_blocks/Selectors_CSS/Selectors_de_tipus_classe_i_ID /ca/docs/Learn/CSS/Building_blocks/Selectors/Type_Class_and_ID_Selectors +/ca/docs/Learn/CSS/Building_blocks/Valors_i_unitats_CSS /ca/docs/Learn/CSS/Building_blocks/Values_and_units /ca/docs/Learn/CSS/Caixes_estil /en-US/docs/Learn/CSS/Building_blocks +/ca/docs/Learn/CSS/Caixes_estil/Caixa_aspecte_interessant /ca/docs/Learn/CSS/Building_blocks/A_cool_looking_box +/ca/docs/Learn/CSS/Caixes_estil/Creació_carta /ca/docs/Learn/CSS/Building_blocks/Creating_fancy_letterheaded_paper /ca/docs/Learn/CSS/Caixes_estil/Efectes_avançats_caixa /ca/docs/Learn/CSS/Building_blocks/Advanced_styling_effects /ca/docs/Learn/CSS/Caixes_estil/Fons /en-US/docs/Learn/CSS/Building_blocks/Backgrounds_and_borders /ca/docs/Learn/CSS/Caixes_estil/Recapitulació_model_caixa /en-US/docs/Learn/CSS/Building_blocks/The_box_model /ca/docs/Learn/CSS/Caixes_estil/Taules_estil /ca/docs/Learn/CSS/Building_blocks/Styling_tables /ca/docs/Learn/CSS/Caixes_estil/Vores /en-US/docs/Learn/CSS/Building_blocks/Backgrounds_and_borders +/ca/docs/Learn/CSS/Disseny_CSS /ca/docs/Learn/CSS/CSS_layout +/ca/docs/Learn/CSS/Disseny_CSS/Disseny_responsiu /ca/docs/Learn/CSS/CSS_layout/Responsive_Design +/ca/docs/Learn/CSS/Disseny_CSS/Exemples_pràctics_posicionament /ca/docs/Learn/CSS/CSS_layout/Practical_positioning_examples +/ca/docs/Learn/CSS/Disseny_CSS/Flexbox /ca/docs/Learn/CSS/CSS_layout/Flexbox +/ca/docs/Learn/CSS/Disseny_CSS/Flotadors /ca/docs/Learn/CSS/CSS_layout/Floats +/ca/docs/Learn/CSS/Disseny_CSS/Flux_normal /ca/docs/Learn/CSS/CSS_layout/Normal_Flow +/ca/docs/Learn/CSS/Disseny_CSS/Graelles /ca/docs/Learn/CSS/CSS_layout/Grids +/ca/docs/Learn/CSS/Disseny_CSS/Introduccio_disseny_CSS /ca/docs/Learn/CSS/CSS_layout/Introduction +/ca/docs/Learn/CSS/Disseny_CSS/Posicionament /ca/docs/Learn/CSS/CSS_layout/Positioning +/ca/docs/Learn/CSS/Disseny_CSS/Suport_en_navegadors_antics /ca/docs/Learn/CSS/CSS_layout/Supporting_Older_Browsers +/ca/docs/Learn/CSS/Estilitzar_text /ca/docs/Learn/CSS/Styling_text +/ca/docs/Learn/CSS/Estilitzar_text/Composició_pàgina_inici /ca/docs/Learn/CSS/Styling_text/Typesetting_a_homepage +/ca/docs/Learn/CSS/Estilitzar_text/Estilitzar_enllaços /ca/docs/Learn/CSS/Styling_text/Styling_links +/ca/docs/Learn/CSS/Estilitzar_text/Fonts_Web /ca/docs/Learn/CSS/Styling_text/Web_fonts +/ca/docs/Learn/CSS/Estilitzar_text/Llistes_estil /ca/docs/Learn/CSS/Styling_text/Styling_lists +/ca/docs/Learn/CSS/Estilitzar_text/Text_fonamental /ca/docs/Learn/CSS/Styling_text/Fundamentals +/ca/docs/Learn/CSS/First_steps/Com_començar_amb_CSS /ca/docs/Learn/CSS/First_steps/Getting_started +/ca/docs/Learn/CSS/First_steps/Com_estructurar_el_CSS /ca/docs/Learn/CSS/First_steps/How_CSS_is_structured +/ca/docs/Learn/CSS/First_steps/Com_funciona_el_CSS /ca/docs/Learn/CSS/First_steps/How_CSS_works +/ca/docs/Learn/CSS/First_steps/Que_es_el_CSS /ca/docs/Learn/CSS/First_steps/What_is_CSS /ca/docs/Learn/CSS/Introducció_a_CSS /en-US/docs/Learn/CSS/First_steps /ca/docs/Learn/CSS/Introducció_a_CSS/Cascada_i_herència /en-US/docs/Learn/CSS/Building_blocks/Cascade_and_inheritance /ca/docs/Learn/CSS/Introducció_a_CSS/Com_funciona_CSS /en-US/docs/Learn/CSS/First_steps/How_CSS_works /ca/docs/Learn/CSS/Introducció_a_CSS/Combinadors_i_selectors_multiples /en-US/docs/Learn/CSS/Building_blocks/Selectors/Combinators +/ca/docs/Learn/CSS/Introducció_a_CSS/Comprensió_CSS_fonamental /ca/docs/Learn/CSS/Building_blocks/Fundamental_CSS_comprehension /ca/docs/Learn/CSS/Introducció_a_CSS/Depuracio_CSS /en-US/docs/Learn/CSS/Building_blocks/Debugging_CSS /ca/docs/Learn/CSS/Introducció_a_CSS/Pseudo-classes_and_pseudo-elements /en-US/docs/Learn/CSS/Building_blocks/Selectors/Pseudo-classes_and_pseudo-elements /ca/docs/Learn/CSS/Introducció_a_CSS/Selectors /en-US/docs/Learn/CSS/Building_blocks/Selectors @@ -26,101 +78,430 @@ /ca/docs/Learn/CSS/Introducció_a_CSS/Sintaxi_CSS /en-US/docs/Learn/CSS/First_steps/How_CSS_is_structured /ca/docs/Learn/CSS/Introducció_a_CSS/Valors_i_unitats /en-US/docs/Learn/CSS/Building_blocks/Values_and_units /ca/docs/Learn/CSS/Introducció_a_CSS/model_caixa /en-US/docs/Learn/CSS/Building_blocks/The_box_model +/ca/docs/Learn/Getting_started_with_the_web/CSS_bàsic /ca/docs/Learn/Getting_started_with_the_web/CSS_basics +/ca/docs/Learn/Getting_started_with_the_web/Com_funciona_Web /ca/docs/Learn/Getting_started_with_the_web/How_the_Web_works +/ca/docs/Learn/Getting_started_with_the_web/Instal·lació_bàsica_programari /ca/docs/Learn/Getting_started_with_the_web/Installing_basic_software +/ca/docs/Learn/Getting_started_with_the_web/JavaScript_bàsic /ca/docs/Learn/Getting_started_with_the_web/JavaScript_basics +/ca/docs/Learn/Getting_started_with_the_web/Publicar_nostre_lloc_web /ca/docs/Learn/Getting_started_with_the_web/Publishing_your_website +/ca/docs/Learn/Getting_started_with_the_web/Quin_aspecte_tindrà_vostre_lloc_web /ca/docs/Learn/Getting_started_with_the_web/What_will_your_website_look_like +/ca/docs/Learn/Getting_started_with_the_web/Tractar_amb_arxius /ca/docs/Learn/Getting_started_with_the_web/Dealing_with_files +/ca/docs/Learn/HTML/Forms /ca/docs/Learn/Forms +/ca/docs/Learn/HTML/Forms/Com_estructurar_un_formulari_web /ca/docs/Learn/Forms/How_to_structure_a_web_form +/ca/docs/Learn/HTML/Forms/Controls_de_formulari_originals /ca/docs/Learn/Forms/Basic_native_form_controls +/ca/docs/Learn/HTML/Forms/El_teu_primer_formulari /ca/docs/Learn/Forms/Your_first_form +/ca/docs/Learn/HTML/Forms/Validacio_formularis /ca/docs/Learn/Forms/Form_validation +/ca/docs/Learn/HTML/Introducció_al_HTML /ca/docs/Learn/HTML/Introduction_to_HTML +/ca/docs/Learn/HTML/Introducció_al_HTML/Crear_hipervincles /ca/docs/Learn/HTML/Introduction_to_HTML/Creating_hyperlinks +/ca/docs/Learn/HTML/Introducció_al_HTML/Depurar_HTML /ca/docs/Learn/HTML/Introduction_to_HTML/Debugging_HTML +/ca/docs/Learn/HTML/Introducció_al_HTML/Document_i_estructura_del_lloc_web /ca/docs/Learn/HTML/Introduction_to_HTML/Document_and_website_structure +/ca/docs/Learn/HTML/Introducció_al_HTML/Estructurar_una_pàgina_de_contingut /ca/docs/Learn/HTML/Introduction_to_HTML/Structuring_a_page_of_content +/ca/docs/Learn/HTML/Introducció_al_HTML/Fonaments_de_text_HTML /ca/docs/Learn/HTML/Introduction_to_HTML/HTML_text_fundamentals +/ca/docs/Learn/HTML/Introducció_al_HTML/Format_de_text_avançat /ca/docs/Learn/HTML/Introduction_to_HTML/Advanced_text_formatting +/ca/docs/Learn/HTML/Introducció_al_HTML/Getting_started /ca/docs/Learn/HTML/Introduction_to_HTML/Getting_started +/ca/docs/Learn/HTML/Introducció_al_HTML/Marcatge_una_carta /ca/docs/Learn/HTML/Introduction_to_HTML/Marking_up_a_letter +/ca/docs/Learn/HTML/Introducció_al_HTML/Què_hi_ha_en_el_head_Metadades_en_HTML /ca/docs/Learn/HTML/Introduction_to_HTML/The_head_metadata_in_HTML +/ca/docs/Learn/HTML/Multimèdia_i_incrustar /ca/docs/Learn/HTML/Multimedia_and_embedding +/ca/docs/Learn/HTML/Multimèdia_i_incrustar/Afegir_gràfics_vectorials_a_la_Web /ca/docs/Learn/HTML/Multimedia_and_embedding/Adding_vector_graphics_to_the_Web +/ca/docs/Learn/HTML/Multimèdia_i_incrustar/Contingut_de_vídeo_i_àudio /ca/docs/Learn/HTML/Multimedia_and_embedding/Video_and_audio_content +/ca/docs/Learn/HTML/Multimèdia_i_incrustar/De_objecte_a_iframe_altres_tecnologies_incrustació /ca/docs/Learn/HTML/Multimedia_and_embedding/Other_embedding_technologies +/ca/docs/Learn/HTML/Multimèdia_i_incrustar/Images_in_HTML /ca/docs/Learn/HTML/Multimedia_and_embedding/Images_in_HTML +/ca/docs/Learn/HTML/Multimèdia_i_incrustar/Imatges_sensibles /ca/docs/Learn/HTML/Multimedia_and_embedding/Responsive_images +/ca/docs/Learn/HTML/Multimèdia_i_incrustar/Mozilla_pàgina_de_benvinguda /ca/docs/Learn/HTML/Multimedia_and_embedding/Mozilla_splash_page +/ca/docs/Learn/HTML/Taules_HTML /ca/docs/Learn/HTML/Tables +/ca/docs/Learn/HTML/Taules_HTML/Avaluació_Estructurar_les_dades_dels_planeta /ca/docs/Learn/HTML/Tables/Structuring_planet_data +/ca/docs/Learn/HTML/Taules_HTML/Fonaments_de_la_taula_HTML /ca/docs/Learn/HTML/Tables/Basics +/ca/docs/Learn/HTML/Taules_HTML/Taula_HTML_característiques_avançades_i_laccessibilitat /ca/docs/Learn/HTML/Tables/Advanced +/ca/docs/MDN/Comunitat /ca/docs/orphaned/MDN/Community /ca/docs/MDN/Contribute/Estructures /ca/docs/MDN/Structures +/ca/docs/MDN/Contribute/Howto/Crear_un_compte_MDN /ca/docs/orphaned/MDN/Contribute/Howto/Create_an_MDN_account +/ca/docs/MDN/Contribute/Processos /ca/docs/MDN/Contribute/Processes +/ca/docs/MDN/Kuma /ca/docs/MDN/Yari /ca/docs/MDN/comentaris /ca/docs/MDN/Contribute/Feedback +/ca/docs/MDN_at_ten /ca/docs/MDN/At_ten /ca/docs/Portada /ca/docs/Web /ca/docs/Pàgina_principal /ca/docs/Web +/ca/docs/Web/API/Canvas_API/Tutorial/Animacions_avançades /ca/docs/Web/API/Canvas_API/Tutorial/Advanced_animations +/ca/docs/Web/API/Canvas_API/Tutorial/Animacions_bàsiques /ca/docs/Web/API/Canvas_API/Tutorial/Basic_animations +/ca/docs/Web/API/Canvas_API/Tutorial/Aplicar_estils_i_colors /ca/docs/Web/API/Canvas_API/Tutorial/Applying_styles_and_colors +/ca/docs/Web/API/Canvas_API/Tutorial/Composició /ca/docs/Web/API/Canvas_API/Tutorial/Compositing +/ca/docs/Web/API/Canvas_API/Tutorial/Dibuixar_text /ca/docs/Web/API/Canvas_API/Tutorial/Drawing_text +/ca/docs/Web/API/Canvas_API/Tutorial/Manipular_píxels_amb_canvas /ca/docs/Web/API/Canvas_API/Tutorial/Pixel_manipulation_with_canvas +/ca/docs/Web/API/Canvas_API/Tutorial/Transformacions /ca/docs/Web/API/Canvas_API/Tutorial/Transformations +/ca/docs/Web/API/Canvas_API/Tutorial/Ús_bàsic /ca/docs/Web/API/Canvas_API/Tutorial/Basic_usage +/ca/docs/Web/CSS/:any /ca/docs/Web/CSS/:is +/ca/docs/Web/CSS/CSS_Box_Model/Dominar_el_col.lapse_del_marge /ca/docs/Web/CSS/CSS_Box_Model/Mastering_margin_collapsing +/ca/docs/Web/CSS/CSS_Box_Model/Introducció_al_model_de_caixa_CSS /ca/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model +/ca/docs/Web/CSS/Referéncia_CSS /ca/docs/Web/CSS/Reference +/ca/docs/Web/CSS/Selectors_CSS /ca/docs/Web/CSS/CSS_Selectors +/ca/docs/Web/CSS/Selectors_CSS/Using_the_:target_pseudo-class_in_selectors /ca/docs/Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors +/ca/docs/Web/CSS/Selectors_ID /ca/docs/Web/CSS/ID_selectors +/ca/docs/Web/CSS/Selectors_Universal /ca/docs/Web/CSS/Universal_selectors +/ca/docs/Web/CSS/Selectors_d'Atribut /ca/docs/Web/CSS/Attribute_selectors +/ca/docs/Web/CSS/Selectors_de_Classe /ca/docs/Web/CSS/Class_selectors +/ca/docs/Web/CSS/Selectors_de_Tipus /ca/docs/Web/CSS/Type_selectors +/ca/docs/Web/CSS/Selectors_de_descendents /ca/docs/Web/CSS/Descendant_combinator +/ca/docs/Web/CSS/Selectors_de_fills /ca/docs/Web/CSS/Child_combinator +/ca/docs/Web/CSS/Selectors_de_germans_adjacents /ca/docs/Web/CSS/Adjacent_sibling_combinator +/ca/docs/Web/CSS/Selectors_general_de_germans /ca/docs/Web/CSS/General_sibling_combinator +/ca/docs/Web/CSS/Sintaxi /ca/docs/Web/CSS/Syntax +/ca/docs/Web/Guide/AJAX/Primers_passos /ca/docs/Web/Guide/AJAX/Getting_Started /ca/docs/Web/Guide/CSS /ca/docs/Learn/CSS +/ca/docs/Web/Guide/CSS/Inici_en_CSS /ca/docs/conflicting/Learn/CSS/First_steps +/ca/docs/Web/Guide/CSS/Inici_en_CSS/CSS_llegible /ca/docs/conflicting/Learn/CSS/First_steps/How_CSS_is_structured +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Caixes /ca/docs/conflicting/Learn/CSS/Building_blocks +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Cascada_i_herència /ca/docs/conflicting/Learn/CSS/Building_blocks/Cascade_and_inheritance +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Color /ca/docs/conflicting/Learn/CSS/Building_blocks/Values_and_units +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Com_funciona_el_CSS /ca/docs/conflicting/Learn/CSS/First_steps/How_CSS_works /ca/docs/Web/Guide/CSS/Inici_en_CSS/Contingut /ca/docs/Learn/CSS/Howto/Generated_content +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Disseny /ca/docs/conflicting/Learn/CSS/CSS_layout +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Estils_de_text /ca/docs/conflicting/Learn/CSS/Styling_text/Fundamentals +/ca/docs/Web/Guide/CSS/Inici_en_CSS/JavaScript /ca/docs/Learn/JavaScript/Client-side_web_APIs/Manipulating_documents +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Llistes /ca/docs/conflicting/Learn/CSS/Styling_text/Styling_lists +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Mitjà /ca/docs/Web/Progressive_web_apps/Responsive/Media_types +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Per_què_utilitzar_CSS /ca/docs/conflicting/Learn/CSS/First_steps/How_CSS_works_54b8e7ce45c74338181144ded4fbdccf +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Que_és_CSS /ca/docs/conflicting/Learn/CSS/First_steps/How_CSS_works_9566880e82eb23b2f47f8821f75e0ab1 +/ca/docs/Web/Guide/CSS/Inici_en_CSS/SVG_i_CSS /ca/docs/Web/SVG/Tutorial/SVG_and_CSS +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Selectors /ca/docs/conflicting/Learn/CSS/Building_blocks/Selectors +/ca/docs/Web/Guide/CSS/Inici_en_CSS/Taules /ca/docs/conflicting/Learn/CSS/Building_blocks/Styling_tables +/ca/docs/Web/Guide/Gràfics /ca/docs/Web/Guide/Graphics /ca/docs/Web/Guide/HTML /ca/docs/Learn/HTML -/ca/docs/Web/Guide/HTML/Forms /ca/docs/Learn/HTML/Forms -/ca/docs/Web/Guide/HTML/Introduction /ca/docs/Learn/HTML/Introducció_al_HTML -/ca/docs/Web/JavaScript/Reference/Classes /ca/docs/Web/JavaScript/Referencia/Classes -/ca/docs/Web/JavaScript/Reference/Classes/constructor /ca/docs/Web/JavaScript/Referencia/Classes/constructor -/ca/docs/Web/JavaScript/Reference/Classes/static /ca/docs/Web/JavaScript/Referencia/Classes/static -/ca/docs/Web/JavaScript/Reference/Operators /ca/docs/Web/JavaScript/Referencia/Operadors -/ca/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators /ca/docs/Web/JavaScript/Referencia/Operadors/Arithmetic_Operators -/ca/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators /ca/docs/Web/JavaScript/Referencia/Operadors/Bitwise_Operators -/ca/docs/Web/JavaScript/Reference/Operators/Conditional_Operator /ca/docs/Web/JavaScript/Referencia/Operadors/Conditional_Operator -/ca/docs/Web/JavaScript/Reference/Operators/Grouping /ca/docs/Web/JavaScript/Referencia/Operadors/Grouping -/ca/docs/Web/JavaScript/Reference/Operators/Logical_Operators /ca/docs/Web/JavaScript/Referencia/Operadors/Logical_Operators -/ca/docs/Web/JavaScript/Reference/Operators/Operador_Coma /ca/docs/Web/JavaScript/Referencia/Operadors/Operador_Coma -/ca/docs/Web/JavaScript/Reference/Operators/typeof /ca/docs/Web/JavaScript/Referencia/Operadors/typeof -/ca/docs/Web/JavaScript/Reference/Operators/void /ca/docs/Web/JavaScript/Referencia/Operadors/void -/ca/docs/Web/JavaScript/Reference/Operators/yield /ca/docs/Web/JavaScript/Referencia/Operadors/yield -/ca/docs/Web/JavaScript/Reference/Statements /ca/docs/Web/JavaScript/Referencia/Sentencies -/ca/docs/Web/JavaScript/Reference/Statements/Buida /ca/docs/Web/JavaScript/Referencia/Sentencies/Buida -/ca/docs/Web/JavaScript/Reference/Statements/block /ca/docs/Web/JavaScript/Referencia/Sentencies/block -/ca/docs/Web/JavaScript/Reference/Statements/for /ca/docs/Web/JavaScript/Referencia/Sentencies/for -/ca/docs/Web/JavaScript/Reference/Statements/for...of /ca/docs/Web/JavaScript/Referencia/Sentencies/for...of -/ca/docs/Web/JavaScript/Reference/Statements/function /ca/docs/Web/JavaScript/Referencia/Sentencies/function -/ca/docs/Web/JavaScript/Reference/Statements/if...else /ca/docs/Web/JavaScript/Referencia/Sentencies/if...else -/ca/docs/Web/JavaScript/Reference/Statements/return /ca/docs/Web/JavaScript/Referencia/Sentencies/return -/ca/docs/Web/JavaScript/Reference/Statements/while /ca/docs/Web/JavaScript/Referencia/Sentencies/while -/ca/docs/Web/JavaScript/Referencia/Global_Objects /ca/docs/Web/JavaScript/Referencia/Objectes_globals -/ca/docs/Web/JavaScript/Referencia/Global_Objects/Infinity /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Infinity -/ca/docs/Web/JavaScript/Referencia/Global_Objects/Math /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math -/ca/docs/Web/JavaScript/Referencia/Global_Objects/NaN /ca/docs/Web/JavaScript/Referencia/Objectes_globals/NaN -/ca/docs/Web/JavaScript/Referencia/Global_Objects/Number /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number -/ca/docs/Web/JavaScript/Referencia/Global_Objects/null /ca/docs/Web/JavaScript/Referencia/Objectes_globals/null -/ca/docs/Web/JavaScript/Referencia/Global_Objects/undefined /ca/docs/Web/JavaScript/Referencia/Objectes_globals/undefined -/ca/docs/Web/JavaScript/Referencia/Objectes_standard /ca/docs/Web/JavaScript/Referencia/Objectes_globals -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Boolean /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Boolean -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Boolean/prototype /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Boolean/prototype -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Boolean/toSource /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Boolean/toSource -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Boolean/toString /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Boolean/toString -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Boolean/valueOf /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Boolean/valueOf -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getDay /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getDay -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getFullYear /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getFullYear -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getHours /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getHours -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getMilliseconds /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getMilliseconds -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getMinutes /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getMinutes -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getMonth /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getMonth -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getSeconds /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getSeconds -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/now /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/now -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/prototype /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/prototype -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/columnNumber /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/columnNumber -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/fileName /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/fileName -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/lineNumber /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/lineNumber -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/message /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/message -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/name /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/name -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/prototype /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/prototype -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/toString /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/toString -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Infinity /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Infinity -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/JSON /ca/docs/Web/JavaScript/Referencia/Objectes_globals/JSON -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Map /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/E /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/E -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/LN10 /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/LN10 -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/LN2 /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/LN2 -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/LOG10E /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/LOG10E -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/LOG2E /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/LOG2E -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/PI /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/PI -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/SQRT1_2 /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/SQRT1_2 -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/SQRT2 /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/SQRT2 -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/abs /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/abs -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/acos /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/acos -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/asin /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/asin -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/atan /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/atan -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/ceil /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/ceil -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/cos /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/cos -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/floor /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/floor -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/sin /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/sin -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/tan /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/tan -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/NaN /ca/docs/Web/JavaScript/Referencia/Objectes_globals/NaN -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/EPSILON /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/EPSILON -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/MAX_SAFE_INTEGER /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/MAX_SAFE_INTEGER -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/MAX_VALUE /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/MAX_VALUE -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/MIN_SAFE_INTEGER /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/MIN_SAFE_INTEGER -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/MIN_VALUE /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/MIN_VALUE -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/NEGATIVE_INFINITY /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/NEGATIVE_INFINITY -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/NaN /ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/NaN -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/String /ca/docs/Web/JavaScript/Referencia/Objectes_globals/String -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/String/length /ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/length -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/null /ca/docs/Web/JavaScript/Referencia/Objectes_globals/null -/ca/docs/Web/JavaScript/Referencia/Objectes_standard/undefined /ca/docs/Web/JavaScript/Referencia/Objectes_globals/undefined +/ca/docs/Web/Guide/HTML/Forms /ca/docs/Learn/Forms +/ca/docs/Web/Guide/HTML/Introduction /ca/docs/Learn/HTML/Introduction_to_HTML +/ca/docs/Web/Guide/HTML/Us_de_seccions_i_esquemes_en_HTML /ca/docs/Web/Guide/HTML/Using_HTML_sections_and_outlines +/ca/docs/Web/Guide/HTML/_Consells_per_crear_pàgines_HTML_de_càrrega_ràpida /ca/docs/Learn/HTML/Howto/Author_fast-loading_HTML_pages +/ca/docs/Web/HTML/Element/command /ca/docs/orphaned/Web/HTML/Element/command +/ca/docs/Web/HTML/Element/element /ca/docs/orphaned/Web/HTML/Element/element +/ca/docs/Web/HTML/Elements_en_línia /ca/docs/Web/HTML/Inline_elements +/ca/docs/Web/HTML/Global_attributes/dropzone /ca/docs/orphaned/Web/HTML/Global_attributes/dropzone +/ca/docs/Web/HTML/Optimizing_your_pages_for_speculative_parsing /ca/docs/Glossary/speculative_parsing +/ca/docs/Web/JavaScript/Guide/Expressions_i_Operadors /ca/docs/Web/JavaScript/Guide/Expressions_and_Operators +/ca/docs/Web/JavaScript/Guide/Introducció /ca/docs/Web/JavaScript/Guide/Introduction +/ca/docs/Web/JavaScript/Introducció_al_Javascript_orientat_a_Objectes /ca/docs/Learn/JavaScript/Objects +/ca/docs/Web/JavaScript/Reference/Errors/Nomes-Lectura /ca/docs/Web/JavaScript/Reference/Errors/Read-only +/ca/docs/Web/JavaScript/Reference/Functions/parameters_rest /ca/docs/Web/JavaScript/Reference/Functions/rest_parameters +/ca/docs/Web/JavaScript/Reference/Global_Objects/DataView/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/DataView +/ca/docs/Web/JavaScript/Reference/Global_Objects/EvalError/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/EvalError +/ca/docs/Web/JavaScript/Reference/Global_Objects/Object/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Object +/ca/docs/Web/JavaScript/Reference/Global_Objects/WeakMap/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/WeakMap +/ca/docs/Web/JavaScript/Reference/Global_Objects/WeakSet/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/WeakSet +/ca/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators /ca/docs/conflicting/Web/JavaScript/Reference/Operators +/ca/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators /ca/docs/conflicting/Web/JavaScript/Reference/Operators_94c03c413a71df1ccff4c3ede275360c +/ca/docs/Web/JavaScript/Reference/Operators/Logical_Operators /ca/docs/conflicting/Web/JavaScript/Reference/Operators_af596841c6a3650ee514088f0e310901 +/ca/docs/Web/JavaScript/Reference/Operators/Operador_Coma /ca/docs/Web/JavaScript/Reference/Operators/Comma_Operator +/ca/docs/Web/JavaScript/Reference/Statements/Buida /ca/docs/Web/JavaScript/Reference/Statements/Empty +/ca/docs/Web/JavaScript/Referencia /ca/docs/Web/JavaScript/Reference +/ca/docs/Web/JavaScript/Referencia/Classes /ca/docs/Web/JavaScript/Reference/Classes +/ca/docs/Web/JavaScript/Referencia/Classes/constructor /ca/docs/Web/JavaScript/Reference/Classes/constructor +/ca/docs/Web/JavaScript/Referencia/Classes/static /ca/docs/Web/JavaScript/Reference/Classes/static +/ca/docs/Web/JavaScript/Referencia/Global_Objects /ca/docs/Web/JavaScript/Reference/Global_Objects +/ca/docs/Web/JavaScript/Referencia/Global_Objects/Infinity /ca/docs/Web/JavaScript/Reference/Global_Objects/Infinity +/ca/docs/Web/JavaScript/Referencia/Global_Objects/Math /ca/docs/Web/JavaScript/Reference/Global_Objects/Math +/ca/docs/Web/JavaScript/Referencia/Global_Objects/NaN /ca/docs/Web/JavaScript/Reference/Global_Objects/NaN +/ca/docs/Web/JavaScript/Referencia/Global_Objects/Number /ca/docs/Web/JavaScript/Reference/Global_Objects/Number +/ca/docs/Web/JavaScript/Referencia/Global_Objects/null /ca/docs/Web/JavaScript/Reference/Global_Objects/null +/ca/docs/Web/JavaScript/Referencia/Global_Objects/undefined /ca/docs/Web/JavaScript/Reference/Global_Objects/undefined +/ca/docs/Web/JavaScript/Referencia/Objectes_globals /ca/docs/Web/JavaScript/Reference/Global_Objects +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array /ca/docs/Web/JavaScript/Reference/Global_Objects/Array +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/Reduce /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/entries /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/entries +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/every /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/every +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/fill /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/fill +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/filter /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/filter +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/find /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/find +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/findIndex /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/forEach /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/includes /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/includes +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/indexOf /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/isArray /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/join /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/join +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/keys /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/keys +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/lastIndexOf /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/length /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/length +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/map /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/map +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/of /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/of +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/pop /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/pop +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/prototype /ca/docs/orphaned/Web/JavaScript/Reference/Global_Objects/Array/prototype +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/push /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/push +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/reverse /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/shift /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/shift +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/slice /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/slice +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/some /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/some +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Array/splice /ca/docs/Web/JavaScript/Reference/Global_Objects/Array/splice +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Boolean /ca/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Boolean/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Boolean +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Boolean/toSource /ca/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toSource +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Boolean/toString /ca/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toString +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Boolean/valueOf /ca/docs/Web/JavaScript/Reference/Global_Objects/Boolean/valueOf +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date /ca/docs/Web/JavaScript/Reference/Global_Objects/Date +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/UTC /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/UTC +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getDate /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getDate +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getDay /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getDay +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getFullYear /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getFullYear +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getHours /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getHours +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getMilliseconds /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getMinutes /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getMinutes +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getMonth /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getMonth +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getSeconds /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getSeconds +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getTime /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getTime +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getTimezoneOffset /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getUTCDate /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDate +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getUTCDay /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDay +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getUTCFullYear /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getUTCHours /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCHours +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMilliseconds /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMinutes /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMonth /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getUTCSeconds /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/getYear /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getYear +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/now /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/now +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Date +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setDate /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setDate +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setFullYear /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setFullYear +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setHours /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setHours +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setMilliseconds /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setMinutes /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setMinutes +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setMonth /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setMonth +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setSeconds /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setSeconds +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setTime /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setTime +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setUTCDate /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCDate +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setUTCFullYear /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setUTCHours /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCHours +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMilliseconds /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMinutes /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMonth /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setUTCSeconds /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/setYear /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/setYear +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/toDateString /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/toDateString +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/toGMTString /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/toGMTString +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/toISOString /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/toJSON /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/toJSON +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/toString /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/toString +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/toTimeString /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/toTimeString +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Date/valueOf /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/valueOf +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error /ca/docs/Web/JavaScript/Reference/Global_Objects/Error +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/Stack /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/Stack +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/columnNumber /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/columnNumber +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/fileName /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/fileName +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/lineNumber /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/lineNumber +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/message /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/message +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/name /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/name +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Error +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/toSource /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/toSource +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Error/toString /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/toString +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Infinity /ca/docs/Web/JavaScript/Reference/Global_Objects/Infinity +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/JSON /ca/docs/Web/JavaScript/Reference/Global_Objects/JSON +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map /ca/docs/Web/JavaScript/Reference/Global_Objects/Map +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map/clear /ca/docs/Web/JavaScript/Reference/Global_Objects/Map/clear +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map/delete /ca/docs/Web/JavaScript/Reference/Global_Objects/Map/delete +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map/entries /ca/docs/Web/JavaScript/Reference/Global_Objects/Map/entries +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map/forEach /ca/docs/Web/JavaScript/Reference/Global_Objects/Map/forEach +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map/get /ca/docs/Web/JavaScript/Reference/Global_Objects/Map/get +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map/has /ca/docs/Web/JavaScript/Reference/Global_Objects/Map/has +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map/keys /ca/docs/Web/JavaScript/Reference/Global_Objects/Map/keys +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Map +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map/set /ca/docs/Web/JavaScript/Reference/Global_Objects/Map/set +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map/size /ca/docs/Web/JavaScript/Reference/Global_Objects/Map/size +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Map/values /ca/docs/Web/JavaScript/Reference/Global_Objects/Map/values +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math /ca/docs/Web/JavaScript/Reference/Global_Objects/Math +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/E /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/E +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/LN10 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/LN10 +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/LN2 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/LN2 +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/LOG10E /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG10E +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/LOG2E /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG2E +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/PI /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/PI +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/SQRT1_2 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2 +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/SQRT2 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT2 +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/abs /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/abs +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/acos /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/acos +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/acosh /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/acosh +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/asin /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/asin +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/asinh /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/asinh +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/atan /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/atan +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/atan2 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/atan2 +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/atanh /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/atanh +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/cbrt /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/cbrt +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/ceil /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/ceil +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/clz32 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/clz32 +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/cos /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/cos +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/cosh /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/cosh +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/exp /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/exp +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/expm1 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/expm1 +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/floor /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/floor +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/fround /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/fround +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/hypot /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/hypot +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/imul /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/imul +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/log /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/log +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/log10 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/log10 +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/log1p /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/log1p +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/log2 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/log2 +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/max /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/max +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/min /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/min +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/pow /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/pow +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/random /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/random +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/round /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/round +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/sign /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/sign +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/sin /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/sin +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/sinh /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/sinh +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/sqrt /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/sqrt +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/tan /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/tan +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/tanh /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/tanh +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Math/trunc /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/trunc +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/NaN /ca/docs/Web/JavaScript/Reference/Global_Objects/NaN +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number /ca/docs/Web/JavaScript/Reference/Global_Objects/Number +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/EPSILON /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/EPSILON +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/MAX_SAFE_INTEGER /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/MAX_VALUE /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/MIN_SAFE_INTEGER /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/MIN_VALUE /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/NEGATIVE_INFINITY /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/NaN /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/NaN +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/POSITIVE_INFINITY /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/isFinite /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/isFinite +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/isInteger /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/isInteger +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/isNaN /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/isNaN +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/isSafeInteger /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/parseFloat /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/parseFloat +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/parseInt /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/parseInt +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Number +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/toExponential /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/toExponential +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/toFixed /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/toPrecision /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/toPrecision +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Number/toString /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/toString +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Set /ca/docs/Web/JavaScript/Reference/Global_Objects/Set +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Set/add /ca/docs/Web/JavaScript/Reference/Global_Objects/Set/add +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Set/clear /ca/docs/Web/JavaScript/Reference/Global_Objects/Set/clear +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Set/delete /ca/docs/Web/JavaScript/Reference/Global_Objects/Set/delete +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Set/entries /ca/docs/Web/JavaScript/Reference/Global_Objects/Set/entries +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Set/has /ca/docs/Web/JavaScript/Reference/Global_Objects/Set/has +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Set/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Set +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/Set/values /ca/docs/Web/JavaScript/Reference/Global_Objects/Set/values +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String /ca/docs/Web/JavaScript/Reference/Global_Objects/String +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/Trim /ca/docs/Web/JavaScript/Reference/Global_Objects/String/Trim +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/TrimLeft /ca/docs/Web/JavaScript/Reference/Global_Objects/String/trimStart +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/TrimRight /ca/docs/Web/JavaScript/Reference/Global_Objects/String/trimEnd +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/anchor /ca/docs/Web/JavaScript/Reference/Global_Objects/String/anchor +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/big /ca/docs/Web/JavaScript/Reference/Global_Objects/String/big +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/blink /ca/docs/Web/JavaScript/Reference/Global_Objects/String/blink +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/bold /ca/docs/Web/JavaScript/Reference/Global_Objects/String/bold +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/charAt /ca/docs/Web/JavaScript/Reference/Global_Objects/String/charAt +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/concat /ca/docs/Web/JavaScript/Reference/Global_Objects/String/concat +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/endsWith /ca/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/fixed /ca/docs/Web/JavaScript/Reference/Global_Objects/String/fixed +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/fontcolor /ca/docs/Web/JavaScript/Reference/Global_Objects/String/fontcolor +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/fontsize /ca/docs/Web/JavaScript/Reference/Global_Objects/String/fontsize +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/fromCharCode /ca/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/indexOf /ca/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/italics /ca/docs/Web/JavaScript/Reference/Global_Objects/String/italics +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/length /ca/docs/Web/JavaScript/Reference/Global_Objects/String/length +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/link /ca/docs/Web/JavaScript/Reference/Global_Objects/String/link +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/normalize /ca/docs/Web/JavaScript/Reference/Global_Objects/String/normalize +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/small /ca/docs/Web/JavaScript/Reference/Global_Objects/String/small +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/startsWith /ca/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/sub /ca/docs/Web/JavaScript/Reference/Global_Objects/String/sub +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/substr /ca/docs/Web/JavaScript/Reference/Global_Objects/String/substr +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/sup /ca/docs/Web/JavaScript/Reference/Global_Objects/String/sup +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/toLocaleLowerCase /ca/docs/Web/JavaScript/Reference/Global_Objects/String/toLocaleLowerCase +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/toLocaleUpperCase /ca/docs/Web/JavaScript/Reference/Global_Objects/String/toLocaleUpperCase +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/toLowerCase /ca/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/toString /ca/docs/Web/JavaScript/Reference/Global_Objects/String/toString +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/String/toUpperCase /ca/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/SyntaxError /ca/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/SyntaxError/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/SyntaxError +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/null /ca/docs/Web/JavaScript/Reference/Global_Objects/null +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/parseFloat /ca/docs/Web/JavaScript/Reference/Global_Objects/parseFloat +/ca/docs/Web/JavaScript/Referencia/Objectes_globals/undefined /ca/docs/Web/JavaScript/Reference/Global_Objects/undefined +/ca/docs/Web/JavaScript/Referencia/Objectes_standard /ca/docs/Web/JavaScript/Reference/Global_Objects +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Boolean /ca/docs/Web/JavaScript/Reference/Global_Objects/Boolean +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Boolean/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Boolean +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Boolean/toSource /ca/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toSource +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Boolean/toString /ca/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toString +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Boolean/valueOf /ca/docs/Web/JavaScript/Reference/Global_Objects/Boolean/valueOf +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date /ca/docs/Web/JavaScript/Reference/Global_Objects/Date +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getDay /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getDay +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getFullYear /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getFullYear +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getHours /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getHours +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getMilliseconds /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getMinutes /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getMinutes +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getMonth /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getMonth +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/getSeconds /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/getSeconds +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/now /ca/docs/Web/JavaScript/Reference/Global_Objects/Date/now +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Date/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Date +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error /ca/docs/Web/JavaScript/Reference/Global_Objects/Error +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/columnNumber /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/columnNumber +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/fileName /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/fileName +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/lineNumber /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/lineNumber +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/message /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/message +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/name /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/name +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/prototype /ca/docs/conflicting/Web/JavaScript/Reference/Global_Objects/Error +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Error/toString /ca/docs/Web/JavaScript/Reference/Global_Objects/Error/toString +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Infinity /ca/docs/Web/JavaScript/Reference/Global_Objects/Infinity +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/JSON /ca/docs/Web/JavaScript/Reference/Global_Objects/JSON +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Map /ca/docs/Web/JavaScript/Reference/Global_Objects/Map +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math /ca/docs/Web/JavaScript/Reference/Global_Objects/Math +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/E /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/E +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/LN10 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/LN10 +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/LN2 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/LN2 +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/LOG10E /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG10E +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/LOG2E /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/LOG2E +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/PI /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/PI +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/SQRT1_2 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2 +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/SQRT2 /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/SQRT2 +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/abs /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/abs +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/acos /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/acos +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/asin /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/asin +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/atan /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/atan +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/ceil /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/ceil +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/cos /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/cos +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/floor /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/floor +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/sin /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/sin +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Math/tan /ca/docs/Web/JavaScript/Reference/Global_Objects/Math/tan +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/NaN /ca/docs/Web/JavaScript/Reference/Global_Objects/NaN +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number /ca/docs/Web/JavaScript/Reference/Global_Objects/Number +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/EPSILON /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/EPSILON +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/MAX_SAFE_INTEGER /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/MAX_VALUE /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/MIN_SAFE_INTEGER /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/MIN_VALUE /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/NEGATIVE_INFINITY /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/Number/NaN /ca/docs/Web/JavaScript/Reference/Global_Objects/Number/NaN +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/String /ca/docs/Web/JavaScript/Reference/Global_Objects/String +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/String/length /ca/docs/Web/JavaScript/Reference/Global_Objects/String/length +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/null /ca/docs/Web/JavaScript/Reference/Global_Objects/null +/ca/docs/Web/JavaScript/Referencia/Objectes_standard/undefined /ca/docs/Web/JavaScript/Reference/Global_Objects/undefined +/ca/docs/Web/JavaScript/Referencia/Operadors /ca/docs/Web/JavaScript/Reference/Operators +/ca/docs/Web/JavaScript/Referencia/Operadors/Arithmetic_Operators /ca/docs/conflicting/Web/JavaScript/Reference/Operators +/ca/docs/Web/JavaScript/Referencia/Operadors/Bitwise_Operators /ca/docs/conflicting/Web/JavaScript/Reference/Operators_94c03c413a71df1ccff4c3ede275360c +/ca/docs/Web/JavaScript/Referencia/Operadors/Conditional_Operator /ca/docs/Web/JavaScript/Reference/Operators/Conditional_Operator +/ca/docs/Web/JavaScript/Referencia/Operadors/Grouping /ca/docs/Web/JavaScript/Reference/Operators/Grouping +/ca/docs/Web/JavaScript/Referencia/Operadors/Logical_Operators /ca/docs/conflicting/Web/JavaScript/Reference/Operators_af596841c6a3650ee514088f0e310901 +/ca/docs/Web/JavaScript/Referencia/Operadors/Operador_Coma /ca/docs/Web/JavaScript/Reference/Operators/Comma_Operator +/ca/docs/Web/JavaScript/Referencia/Operadors/function /ca/docs/Web/JavaScript/Reference/Operators/function +/ca/docs/Web/JavaScript/Referencia/Operadors/super /ca/docs/Web/JavaScript/Reference/Operators/super +/ca/docs/Web/JavaScript/Referencia/Operadors/typeof /ca/docs/Web/JavaScript/Reference/Operators/typeof +/ca/docs/Web/JavaScript/Referencia/Operadors/void /ca/docs/Web/JavaScript/Reference/Operators/void +/ca/docs/Web/JavaScript/Referencia/Operadors/yield /ca/docs/Web/JavaScript/Reference/Operators/yield +/ca/docs/Web/JavaScript/Referencia/Sentencies /ca/docs/Web/JavaScript/Reference/Statements +/ca/docs/Web/JavaScript/Referencia/Sentencies/Buida /ca/docs/Web/JavaScript/Reference/Statements/Empty +/ca/docs/Web/JavaScript/Referencia/Sentencies/block /ca/docs/Web/JavaScript/Reference/Statements/block +/ca/docs/Web/JavaScript/Referencia/Sentencies/break /ca/docs/Web/JavaScript/Reference/Statements/break +/ca/docs/Web/JavaScript/Referencia/Sentencies/continue /ca/docs/Web/JavaScript/Reference/Statements/continue +/ca/docs/Web/JavaScript/Referencia/Sentencies/debugger /ca/docs/Web/JavaScript/Reference/Statements/debugger +/ca/docs/Web/JavaScript/Referencia/Sentencies/do...while /ca/docs/Web/JavaScript/Reference/Statements/do...while +/ca/docs/Web/JavaScript/Referencia/Sentencies/export /ca/docs/Web/JavaScript/Reference/Statements/export +/ca/docs/Web/JavaScript/Referencia/Sentencies/for /ca/docs/Web/JavaScript/Reference/Statements/for +/ca/docs/Web/JavaScript/Referencia/Sentencies/for...of /ca/docs/Web/JavaScript/Reference/Statements/for...of +/ca/docs/Web/JavaScript/Referencia/Sentencies/function /ca/docs/Web/JavaScript/Reference/Statements/function +/ca/docs/Web/JavaScript/Referencia/Sentencies/if...else /ca/docs/Web/JavaScript/Reference/Statements/if...else +/ca/docs/Web/JavaScript/Referencia/Sentencies/return /ca/docs/Web/JavaScript/Reference/Statements/return +/ca/docs/Web/JavaScript/Referencia/Sentencies/throw /ca/docs/Web/JavaScript/Reference/Statements/throw +/ca/docs/Web/JavaScript/Referencia/Sentencies/while /ca/docs/Web/JavaScript/Reference/Statements/while +/ca/docs/Web/JavaScript/Referencia/Sobre /ca/docs/Web/JavaScript/Reference/About +/ca/docs/Web/JavaScript/quant_a_JavaScript /ca/docs/Web/JavaScript/About_JavaScript +/ca/docs/Web_Development /ca/docs/conflicting/Web/Guide +/ca/docs/Web_Development/Mobile /ca/docs/Web/Guide/Mobile +/ca/docs/Web_Development/Mobile/A_hybrid_approach /ca/docs/Web/Guide/Mobile/A_hybrid_approach +/ca/docs/Web_Development/Mobile/Mobile-friendliness /ca/docs/Web/Guide/Mobile/Mobile-friendliness +/ca/docs/Web_Development/Mobile/Responsive_design /ca/docs/Web/Progressive_web_apps +/ca/docs/Web_Development/Mobile/Separate_sites /ca/docs/Web/Guide/Mobile/Separate_sites /ca/docs/XSLT /ca/docs/Web/XSLT /ca/docs/en /en-US/ diff --git a/files/ca/_wikihistory.json b/files/ca/_wikihistory.json index 9106928da6..ba7cbe68aa 100644 --- a/files/ca/_wikihistory.json +++ b/files/ca/_wikihistory.json @@ -1,17 +1,4 @@ { - "Addició_de_motors_de_cerca_a_les_pàgines_web": { - "modified": "2019-01-16T15:50:29.790Z", - "contributors": [ - "Toniher" - ] - }, - "Firefox_2_per_a_desenvolupadors": { - "modified": "2019-01-16T14:39:26.842Z", - "contributors": [ - "fscholz", - "Toniher" - ] - }, "Glossary": { "modified": "2020-10-07T11:07:12.440Z", "contributors": [ @@ -45,12 +32,6 @@ "Legioinvicta" ] }, - "Glossary/Atribut": { - "modified": "2019-03-23T22:19:53.370Z", - "contributors": [ - "Legioinvicta" - ] - }, "Glossary/Boolean": { "modified": "2019-03-23T22:19:54.285Z", "contributors": [ @@ -64,18 +45,6 @@ "Legioinvicta" ] }, - "Glossary/Caràcter": { - "modified": "2019-03-23T22:19:53.728Z", - "contributors": [ - "Legioinvicta" - ] - }, - "Glossary/Codificació_de_caràcters": { - "modified": "2019-03-23T22:19:50.642Z", - "contributors": [ - "Legioinvicta" - ] - }, "Glossary/DOM": { "modified": "2019-03-23T22:19:56.910Z", "contributors": [ @@ -88,24 +57,12 @@ "Legioinvicta" ] }, - "Glossary/Etiqueta": { - "modified": "2019-03-23T22:19:57.140Z", - "contributors": [ - "Legioinvicta" - ] - }, "Glossary/FTP": { "modified": "2019-03-23T22:19:59.099Z", "contributors": [ "Legioinvicta" ] }, - "Glossary/Funció": { - "modified": "2019-03-23T22:19:50.324Z", - "contributors": [ - "Legioinvicta" - ] - }, "Glossary/HTML": { "modified": "2020-02-14T08:10:01.788Z", "contributors": [ @@ -149,18 +106,6 @@ "Legioinvicta" ] }, - "Glossary/Mètode": { - "modified": "2019-03-23T22:20:05.381Z", - "contributors": [ - "Legioinvicta" - ] - }, - "Glossary/Navegador": { - "modified": "2019-03-23T22:19:58.039Z", - "contributors": [ - "Legioinvicta" - ] - }, "Glossary/Null": { "modified": "2019-03-23T22:19:50.738Z", "contributors": [ @@ -179,24 +124,6 @@ "Legioinvicta" ] }, - "Glossary/Objecte": { - "modified": "2019-03-23T22:19:50.943Z", - "contributors": [ - "Legioinvicta" - ] - }, - "Glossary/Primitiu": { - "modified": "2019-03-23T22:20:08.496Z", - "contributors": [ - "Legioinvicta" - ] - }, - "Glossary/Propietat": { - "modified": "2019-03-23T22:20:10.616Z", - "contributors": [ - "Legioinvicta" - ] - }, "Glossary/Protocol": { "modified": "2019-03-23T22:19:58.471Z", "contributors": [ @@ -222,12 +149,6 @@ "Legioinvicta" ] }, - "Glossary/Servidor": { - "modified": "2019-03-23T22:19:48.520Z", - "contributors": [ - "Legioinvicta" - ] - }, "Glossary/String": { "modified": "2019-03-23T22:19:52.941Z", "contributors": [ @@ -258,12 +179,6 @@ "Legioinvicta" ] }, - "Glossary/Valor": { - "modified": "2019-03-23T22:20:04.109Z", - "contributors": [ - "Legioinvicta" - ] - }, "Glossary/World_Wide_Web": { "modified": "2019-03-23T22:19:59.394Z", "contributors": [ @@ -282,30 +197,12 @@ "Legioinvicta" ] }, - "Glossary/adreça_IP": { - "modified": "2019-03-23T22:19:57.768Z", - "contributors": [ - "Legioinvicta" - ] - }, - "Glossary/referències_a_objectes": { - "modified": "2019-03-23T22:20:02.599Z", - "contributors": [ - "Legioinvicta" - ] - }, "Glossary/undefined": { "modified": "2019-03-23T22:19:52.843Z", "contributors": [ "Legioinvicta" ] }, - "Glossary/Àmbit": { - "modified": "2019-03-23T22:20:06.122Z", - "contributors": [ - "Legioinvicta" - ] - }, "Learn": { "modified": "2020-07-16T22:43:38.266Z", "contributors": [ @@ -341,13 +238,6 @@ "UOCccorcoles" ] }, - "Learn/Accessibility/Que_es_accessibilitat": { - "modified": "2020-09-28T14:42:22.680Z", - "contributors": [ - "PalomaBanyuls", - "editorUOC" - ] - }, "Learn/CSS": { "modified": "2020-07-16T22:25:32.427Z", "contributors": [ @@ -368,81 +258,12 @@ "Legioinvicta" ] }, - "Learn/CSS/Building_blocks/Cascada_i_herència": { - "modified": "2020-09-06T11:07:02.729Z", - "contributors": [ - "UOCccorcoles", - "editorUOC" - ] - }, - "Learn/CSS/Building_blocks/Depurar_el_CSS": { - "modified": "2020-10-15T22:27:14.006Z", - "contributors": [ - "UOCccorcoles", - "editorUOC" - ] - }, - "Learn/CSS/Building_blocks/Desbordament_de_contingut": { - "modified": "2020-09-07T07:28:16.584Z", - "contributors": [ - "UOCccorcoles", - "editorUOC" - ] - }, - "Learn/CSS/Building_blocks/Dimensionar_elements_en_CSS": { - "modified": "2020-07-16T22:29:20.212Z", - "contributors": [ - "editorUOC" - ] - }, - "Learn/CSS/Building_blocks/Fons_i_vores": { - "modified": "2020-09-06T17:11:06.366Z", - "contributors": [ - "UOCccorcoles", - "editorUOC" - ] - }, "Learn/CSS/Building_blocks/Images_media_form_elements": { "modified": "2020-07-16T22:29:24.255Z", "contributors": [ "editorUOC" ] }, - "Learn/CSS/Building_blocks/Selectors_CSS": { - "modified": "2020-09-06T12:38:01.863Z", - "contributors": [ - "UOCccorcoles", - "editorUOC" - ] - }, - "Learn/CSS/Building_blocks/Selectors_CSS/Combinadors": { - "modified": "2020-09-06T14:03:41.366Z", - "contributors": [ - "UOCccorcoles", - "editorUOC" - ] - }, - "Learn/CSS/Building_blocks/Selectors_CSS/Pseudo-classes_and_pseudo-elements": { - "modified": "2020-09-06T13:50:00.436Z", - "contributors": [ - "UOCccorcoles", - "editorUOC" - ] - }, - "Learn/CSS/Building_blocks/Selectors_CSS/Selectors_atribut": { - "modified": "2020-09-06T13:31:42.768Z", - "contributors": [ - "UOCccorcoles", - "editorUOC" - ] - }, - "Learn/CSS/Building_blocks/Selectors_CSS/Selectors_de_tipus_classe_i_ID": { - "modified": "2020-09-06T13:14:37.617Z", - "contributors": [ - "UOCccorcoles", - "editorUOC" - ] - }, "Learn/CSS/Building_blocks/Styling_tables": { "modified": "2020-09-14T06:59:58.596Z", "contributors": [ @@ -460,2855 +281,2936 @@ "editorUOC" ] }, - "Learn/CSS/Building_blocks/Valors_i_unitats_CSS": { - "modified": "2020-09-07T09:12:07.786Z", + "Learn/CSS/First_steps": { + "modified": "2020-07-16T22:27:38.616Z", "contributors": [ - "UOCccorcoles", - "editorUOC" + "chrisdavidmills" ] }, - "Learn/CSS/Caixes_estil/Caixa_aspecte_interessant": { - "modified": "2020-07-16T22:28:26.308Z", + "Learn/CSS/Howto": { + "modified": "2020-07-16T22:25:41.769Z", "contributors": [ - "Legioinvicta" + "chrisdavidmills" ] }, - "Learn/CSS/Caixes_estil/Creació_carta": { - "modified": "2020-07-16T22:28:24.307Z", + "Learn/CSS/Howto/Generated_content": { + "modified": "2020-07-16T22:25:47.177Z", "contributors": [ + "chrisdavidmills", "Legioinvicta" ] }, - "Learn/CSS/Disseny_CSS": { - "modified": "2020-07-16T22:26:29.321Z", + "Learn/Getting_started_with_the_web": { + "modified": "2020-07-16T22:33:49.938Z", "contributors": [ + "nuriarai", "Legioinvicta" ] }, - "Learn/CSS/Disseny_CSS/Disseny_responsiu": { - "modified": "2020-09-17T06:03:03.884Z", + "Learn/Getting_started_with_the_web/HTML_basics": { + "modified": "2020-07-16T22:34:42.935Z", "contributors": [ - "UOCccorcoles", - "editorUOC" + "Legioinvicta" ] }, - "Learn/CSS/Disseny_CSS/Exemples_pràctics_posicionament": { - "modified": "2020-07-16T22:26:47.642Z", + "Learn/HTML": { + "modified": "2020-07-16T22:22:15.125Z", "contributors": [ "Legioinvicta" ] }, - "Learn/CSS/Disseny_CSS/Flexbox": { - "modified": "2020-09-15T14:11:31.873Z", + "Learn/JavaScript": { + "modified": "2020-07-16T22:29:37.255Z", "contributors": [ - "UOCccorcoles", - "editorUOC", - "Legioinvicta" + "chrisdavidmills" ] }, - "Learn/CSS/Disseny_CSS/Flotadors": { - "modified": "2020-10-16T13:31:05.489Z", + "Learn/JavaScript/Building_blocks": { + "modified": "2020-07-16T22:31:06.456Z", "contributors": [ - "zuruckzugehen", - "Legioinvicta" + "juanjocardona" ] }, - "Learn/CSS/Disseny_CSS/Flux_normal": { - "modified": "2020-07-16T22:27:20.382Z", + "MDN": { + "modified": "2020-02-19T19:24:46.607Z", "contributors": [ - "editorUOC" + "jswisher", + "SphinxKnight", + "jordibrus", + "wbamberg", + "Legioinvicta", + "Jeremie", + "Sheppy" ] }, - "Learn/CSS/Disseny_CSS/Graelles": { - "modified": "2020-09-15T17:42:28.654Z", + "MDN/Contribute": { + "modified": "2019-03-23T23:01:53.170Z", "contributors": [ - "UOCccorcoles", - "editorUOC", - "Legioinvicta" + "wbamberg", + "Legioinvicta", + "alispivak" ] }, - "Learn/CSS/Disseny_CSS/Introduccio_disseny_CSS": { - "modified": "2020-09-15T13:10:38.905Z", + "MDN/Contribute/Feedback": { + "modified": "2020-09-30T17:50:23.893Z", "contributors": [ - "UOCccorcoles", - "editorUOC", + "chrisdavidmills", + "jswisher", + "SphinxKnight", + "wbamberg", "Legioinvicta" ] }, - "Learn/CSS/Disseny_CSS/Posicionament": { - "modified": "2020-07-16T22:26:41.807Z", + "MDN/Contribute/Getting_started": { + "modified": "2020-09-30T17:09:26.416Z", "contributors": [ - "Legioinvicta" + "chrisdavidmills", + "carlesferreiro", + "jordibrus", + "teoli", + "Thalula", + "Toniher" ] }, - "Learn/CSS/Disseny_CSS/Suport_en_navegadors_antics": { - "modified": "2020-07-16T22:27:17.065Z", + "MDN/Contribute/Howto": { + "modified": "2020-12-14T11:30:11.093Z", "contributors": [ - "editorUOC" + "ExE-Boss" ] }, - "Learn/CSS/Estilitzar_text": { - "modified": "2020-07-16T22:25:57.417Z", + "MDN/Structures": { + "modified": "2020-09-30T09:04:30.231Z", "contributors": [ + "chrisdavidmills", + "wbamberg", "Legioinvicta" ] }, - "Learn/CSS/Estilitzar_text/Composició_pàgina_inici": { - "modified": "2020-07-16T22:26:25.942Z", + "Mozilla": { + "modified": "2019-03-23T23:35:10.538Z", "contributors": [ - "Legioinvicta" + "djpaliobcn", + "ethertank" ] }, - "Learn/CSS/Estilitzar_text/Estilitzar_enllaços": { - "modified": "2020-09-18T08:18:22.715Z", + "Mozilla/Firefox": { + "modified": "2019-09-10T14:45:53.524Z", "contributors": [ - "UOCccorcoles", - "editorUOC", - "Legioinvicta" + "SphinxKnight", + "Prashanth" ] }, - "Learn/CSS/Estilitzar_text/Fonts_Web": { - "modified": "2020-09-01T07:12:36.767Z", + "Mozilla/Firefox/Releases": { + "modified": "2019-03-23T23:26:02.407Z", "contributors": [ - "UOCccorcoles", - "editorUOC", - "Legioinvicta" + "ziyunfei" ] }, - "Learn/CSS/Estilitzar_text/Llistes_estil": { - "modified": "2020-09-18T08:12:42.705Z", + "Tools": { + "modified": "2020-07-16T22:44:13.837Z", "contributors": [ - "UOCccorcoles", - "editorUOC", - "Legioinvicta" + "SphinxKnight", + "wbamberg", + "Legioinvicta", + "jryans" ] }, - "Learn/CSS/Estilitzar_text/Text_fonamental": { - "modified": "2020-09-18T07:56:58.583Z", + "Tools/Remote_Debugging": { + "modified": "2020-07-16T22:35:36.985Z", "contributors": [ - "UOCccorcoles", - "editorUOC", - "Legioinvicta" + "wbamberg", + "Legioinvicta", + "jryans" ] }, - "Learn/CSS/First_steps": { - "modified": "2020-07-16T22:27:38.616Z", + "Web": { + "modified": "2019-08-08T04:25:52.925Z", "contributors": [ - "chrisdavidmills" + "Legioinvicta", + "ethertank" ] }, - "Learn/CSS/First_steps/Com_començar_amb_CSS": { - "modified": "2020-08-31T14:05:15.542Z", + "Web/API": { + "modified": "2019-09-22T13:24:34.476Z", "contributors": [ - "UOCccorcoles", - "editorUOC" + "duduindo", + "escufi" ] }, - "Learn/CSS/First_steps/Com_estructurar_el_CSS": { - "modified": "2020-09-18T07:37:19.056Z", + "Web/API/Canvas_API": { + "modified": "2019-03-23T22:04:17.711Z", "contributors": [ - "UOCccorcoles", - "editorUOC" + "Legioinvicta" ] }, - "Learn/CSS/First_steps/Com_funciona_el_CSS": { - "modified": "2020-09-18T07:45:35.450Z", + "Web/API/Canvas_API/Tutorial": { + "modified": "2019-03-23T22:04:21.400Z", "contributors": [ - "UOCccorcoles", - "editorUOC" + "stephaniehobson" ] }, - "Learn/CSS/First_steps/Que_es_el_CSS": { - "modified": "2020-10-15T22:26:48.511Z", + "Web/API/Canvas_API/Tutorial/Drawing_shapes": { + "modified": "2019-03-23T22:04:18.638Z", "contributors": [ - "UOCccorcoles", - "editorUOC" + "Legioinvicta" ] }, - "Learn/CSS/Howto": { - "modified": "2020-07-16T22:25:41.769Z", + "Web/API/Canvas_API/Tutorial/Using_images": { + "modified": "2019-03-23T22:04:03.392Z", + "contributors": [ + "Legioinvicta" + ] + }, + "Web/API/WebGL_API": { + "modified": "2019-03-23T22:04:45.878Z", + "contributors": [ + "ibesora" + ] + }, + "Web/API/Window": { + "modified": "2019-03-23T22:02:56.882Z", "contributors": [ "chrisdavidmills" ] }, - "Learn/CSS/Howto/Generated_content": { - "modified": "2020-07-16T22:25:47.177Z", + "Web/API/Window/sidebar": { + "modified": "2019-03-23T22:03:04.245Z", "contributors": [ - "chrisdavidmills", - "Legioinvicta" + "IsaacSchemm" ] }, - "Learn/CSS/Introducció_a_CSS/Comprensió_CSS_fonamental": { - "modified": "2020-07-16T22:28:11.319Z", + "Web/CSS": { + "modified": "2019-09-11T03:34:02.747Z", "contributors": [ - "Legioinvicta" + "SphinxKnight", + "Legioinvicta", + "teoli", + "Arnau-siches" ] }, - "Learn/Getting_started_with_the_web": { - "modified": "2020-07-16T22:33:49.938Z", + "Web/CSS/::-moz-progress-bar": { + "modified": "2019-03-23T22:21:20.781Z", "contributors": [ - "nuriarai", "Legioinvicta" ] }, - "Learn/Getting_started_with_the_web/CSS_bàsic": { - "modified": "2020-07-16T22:34:56.090Z", + "Web/CSS/::-moz-range-progress": { + "modified": "2019-03-18T21:17:32.107Z", "contributors": [ + "teoli", "Legioinvicta" ] }, - "Learn/Getting_started_with_the_web/Com_funciona_Web": { - "modified": "2020-07-16T22:33:59.006Z", + "Web/CSS/::-moz-range-thumb": { + "modified": "2019-03-23T22:21:12.717Z", "contributors": [ + "teoli", "Legioinvicta" ] }, - "Learn/Getting_started_with_the_web/HTML_basics": { - "modified": "2020-07-16T22:34:42.935Z", + "Web/CSS/::-moz-range-track": { + "modified": "2019-03-23T22:21:19.893Z", "contributors": [ + "teoli", "Legioinvicta" ] }, - "Learn/Getting_started_with_the_web/Instal·lació_bàsica_programari": { - "modified": "2020-07-16T22:34:06.205Z", + "Web/CSS/::-webkit-progress-bar": { + "modified": "2019-03-23T22:21:15.673Z", "contributors": [ - "editorUOC", - "nuriarai", + "teoli", "Legioinvicta" ] }, - "Learn/Getting_started_with_the_web/JavaScript_bàsic": { - "modified": "2020-07-16T22:35:08.325Z", + "Web/CSS/::-webkit-progress-value": { + "modified": "2019-03-23T22:21:12.226Z", "contributors": [ + "teoli", "Legioinvicta" ] }, - "Learn/Getting_started_with_the_web/Publicar_nostre_lloc_web": { - "modified": "2020-07-16T22:34:23.226Z", + "Web/CSS/::-webkit-slider-runnable-track": { + "modified": "2019-03-23T22:21:12.535Z", "contributors": [ + "teoli", "Legioinvicta" ] }, - "Learn/Getting_started_with_the_web/Quin_aspecte_tindrà_vostre_lloc_web": { - "modified": "2020-07-16T22:34:14.054Z", + "Web/CSS/::-webkit-slider-thumb": { + "modified": "2019-03-23T22:21:19.418Z", "contributors": [ + "teoli", "Legioinvicta" ] }, - "Learn/Getting_started_with_the_web/Tractar_amb_arxius": { - "modified": "2020-07-16T22:34:31.776Z", + "Web/CSS/::after": { + "modified": "2019-03-23T22:21:16.467Z", "contributors": [ "Legioinvicta" ] }, - "Learn/HTML": { - "modified": "2020-07-16T22:22:15.125Z", + "Web/CSS/::backdrop": { + "modified": "2019-03-23T22:21:14.990Z", "contributors": [ "Legioinvicta" ] }, - "Learn/HTML/Forms": { - "modified": "2020-07-16T22:20:53.997Z", + "Web/CSS/::before": { + "modified": "2019-03-23T22:21:17.379Z", "contributors": [ - "chrisdavidmills", "Legioinvicta" ] }, - "Learn/HTML/Forms/Com_estructurar_un_formulari_web": { - "modified": "2020-09-18T11:10:39.794Z", + "Web/CSS/::cue": { + "modified": "2020-10-15T21:58:05.485Z", "contributors": [ - "UOCccorcoles", - "editorUOC" + "Legioinvicta" ] }, - "Learn/HTML/Forms/Controls_de_formulari_originals": { - "modified": "2020-09-15T07:44:08.730Z", + "Web/CSS/::first-letter": { + "modified": "2019-03-23T22:21:13.268Z", "contributors": [ - "UOCccorcoles", - "editorUOC" + "Legioinvicta" ] }, - "Learn/HTML/Forms/El_teu_primer_formulari": { - "modified": "2020-09-18T11:08:30.671Z", + "Web/CSS/::first-line": { + "modified": "2020-10-15T21:51:25.818Z", "contributors": [ - "UOCccorcoles", - "editorUOC" + "SphinxKnight", + "Legioinvicta" ] }, - "Learn/HTML/Forms/Validacio_formularis": { - "modified": "2020-09-18T11:25:33.611Z", + "Web/CSS/::placeholder": { + "modified": "2019-03-23T22:04:44.753Z", "contributors": [ - "UOCccorcoles", - "editorUOC" + "Legioinvicta" ] }, - "Learn/HTML/Introducció_al_HTML": { - "modified": "2020-07-16T22:22:45.604Z", + "Web/CSS/::selection": { + "modified": "2019-03-23T22:21:15.861Z", "contributors": [ "Legioinvicta", - "ccorcoles" + "Winni-" ] }, - "Learn/HTML/Introducció_al_HTML/Crear_hipervincles": { - "modified": "2020-08-31T10:00:44.793Z", + "Web/CSS/:active": { + "modified": "2019-03-23T22:21:47.358Z", "contributors": [ - "UOCccorcoles", - "editorUOC", - "casabona1983", + "fscholz", "Legioinvicta" ] }, - "Learn/HTML/Introducció_al_HTML/Depurar_HTML": { - "modified": "2020-08-31T12:21:35.167Z", + "Web/CSS/:any-link": { + "modified": "2020-10-15T21:51:11.202Z", "contributors": [ - "UOCccorcoles", - "editorUOC", "Legioinvicta" ] }, - "Learn/HTML/Introducció_al_HTML/Document_i_estructura_del_lloc_web": { - "modified": "2020-08-31T11:17:14.859Z", + "Web/CSS/:checked": { + "modified": "2019-03-23T22:21:43.524Z", "contributors": [ - "UOCccorcoles", - "editorUOC", "Legioinvicta" ] }, - "Learn/HTML/Introducció_al_HTML/Estructurar_una_pàgina_de_contingut": { - "modified": "2020-07-16T22:24:17.607Z", + "Web/CSS/:default": { + "modified": "2019-03-23T22:21:38.352Z", "contributors": [ "Legioinvicta" ] }, - "Learn/HTML/Introducció_al_HTML/Fonaments_de_text_HTML": { - "modified": "2020-09-18T05:51:57.560Z", + "Web/CSS/:dir": { + "modified": "2020-10-15T21:51:13.134Z", "contributors": [ - "UOCccorcoles", - "editorUOC", + "SphinxKnight", "Legioinvicta" ] }, - "Learn/HTML/Introducció_al_HTML/Format_de_text_avançat": { - "modified": "2020-09-18T07:30:27.211Z", + "Web/CSS/:disabled": { + "modified": "2019-03-23T22:21:32.327Z", "contributors": [ - "UOCccorcoles", - "editorUOC", "Legioinvicta" ] }, - "Learn/HTML/Introducció_al_HTML/Getting_started": { - "modified": "2020-09-18T05:39:40.192Z", + "Web/CSS/:empty": { + "modified": "2019-03-23T22:21:35.505Z", "contributors": [ - "UOCccorcoles", - "editorUOC", - "casabona1983", - "nuriarai", - "Legioinvicta", - "lawer" + "Legioinvicta" ] }, - "Learn/HTML/Introducció_al_HTML/Marcatge_una_carta": { - "modified": "2020-07-16T22:23:11.111Z", + "Web/CSS/:enabled": { + "modified": "2019-03-23T22:21:33.868Z", "contributors": [ - "laiagabe", "Legioinvicta" ] }, - "Learn/HTML/Introducció_al_HTML/Què_hi_ha_en_el_head_Metadades_en_HTML": { - "modified": "2020-08-31T06:21:25.281Z", + "Web/CSS/:first": { + "modified": "2019-03-23T22:21:35.151Z", "contributors": [ - "UOCccorcoles", - "editorUOC", "Legioinvicta" ] }, - "Learn/HTML/Multimèdia_i_incrustar": { - "modified": "2020-07-16T22:24:24.359Z", + "Web/CSS/:first-child": { + "modified": "2019-03-23T22:21:24.465Z", "contributors": [ "Legioinvicta" ] }, - "Learn/HTML/Multimèdia_i_incrustar/Afegir_gràfics_vectorials_a_la_Web": { - "modified": "2020-07-16T22:24:39.628Z", + "Web/CSS/:first-of-type": { + "modified": "2019-03-23T22:21:27.205Z", "contributors": [ "Legioinvicta" ] }, - "Learn/HTML/Multimèdia_i_incrustar/Contingut_de_vídeo_i_àudio": { - "modified": "2020-07-16T22:24:50.962Z", + "Web/CSS/:focus": { + "modified": "2019-03-23T22:21:23.494Z", "contributors": [ "Legioinvicta" ] }, - "Learn/HTML/Multimèdia_i_incrustar/De_objecte_a_iframe_altres_tecnologies_incrustació": { - "modified": "2020-07-16T22:25:00.150Z", + "Web/CSS/:focus-within": { + "modified": "2019-03-23T22:21:26.997Z", "contributors": [ "Legioinvicta" ] }, - "Learn/HTML/Multimèdia_i_incrustar/Images_in_HTML": { - "modified": "2020-09-01T07:45:13.148Z", + "Web/CSS/:fullscreen": { + "modified": "2019-03-23T22:21:26.360Z", "contributors": [ - "UOCccorcoles", - "editorUOC", "Legioinvicta" ] }, - "Learn/HTML/Multimèdia_i_incrustar/Imatges_sensibles": { - "modified": "2020-07-16T22:24:32.326Z", + "Web/CSS/:hover": { + "modified": "2019-03-23T22:21:27.607Z", "contributors": [ - "rcomellas", "Legioinvicta" ] }, - "Learn/HTML/Multimèdia_i_incrustar/Mozilla_pàgina_de_benvinguda": { - "modified": "2020-07-16T22:25:05.830Z", + "Web/CSS/:in-range": { + "modified": "2020-10-15T21:51:14.757Z", "contributors": [ + "SphinxKnight", "Legioinvicta" ] }, - "Learn/HTML/Taules_HTML": { - "modified": "2020-07-16T22:25:10.298Z", + "Web/CSS/:indeterminate": { + "modified": "2020-10-15T21:51:13.811Z", "contributors": [ + "fscholz", "Legioinvicta" ] }, - "Learn/HTML/Taules_HTML/Avaluació_Estructurar_les_dades_dels_planeta": { - "modified": "2020-07-16T22:25:28.884Z", + "Web/CSS/:invalid": { + "modified": "2020-10-15T21:51:13.214Z", "contributors": [ + "fscholz", "Legioinvicta" ] }, - "Learn/HTML/Taules_HTML/Fonaments_de_la_taula_HTML": { - "modified": "2020-09-09T11:52:32.829Z", + "Web/CSS/:lang": { + "modified": "2019-03-23T22:21:33.229Z", "contributors": [ - "UOCccorcoles", - "editorUOC", "Legioinvicta" ] }, - "Learn/HTML/Taules_HTML/Taula_HTML_característiques_avançades_i_laccessibilitat": { - "modified": "2020-09-09T12:02:19.448Z", + "Web/CSS/:last-child": { + "modified": "2019-03-23T22:21:25.832Z", "contributors": [ - "UOCccorcoles", - "editorUOC", "Legioinvicta" ] }, - "Learn/JavaScript": { - "modified": "2020-07-16T22:29:37.255Z", + "Web/CSS/:last-of-type": { + "modified": "2019-03-23T22:21:30.611Z", "contributors": [ - "chrisdavidmills" + "Legioinvicta" ] }, - "Learn/JavaScript/Building_blocks": { - "modified": "2020-07-16T22:31:06.456Z", + "Web/CSS/:left": { + "modified": "2019-03-23T22:21:34.439Z", "contributors": [ - "juanjocardona" + "Legioinvicta" ] }, - "MDN": { - "modified": "2020-02-19T19:24:46.607Z", + "Web/CSS/:link": { + "modified": "2019-03-23T22:21:32.532Z", "contributors": [ - "jswisher", - "SphinxKnight", - "jordibrus", - "wbamberg", - "Legioinvicta", - "Jeremie", - "Sheppy" + "Legioinvicta" ] }, - "MDN/Comunitat": { - "modified": "2019-09-11T08:03:49.400Z", + "Web/CSS/:not": { + "modified": "2019-03-23T22:21:28.771Z", "contributors": [ - "SphinxKnight", - "wbamberg", "Legioinvicta" ] }, - "MDN/Contribute": { - "modified": "2019-03-23T23:01:53.170Z", + "Web/CSS/:nth-child": { + "modified": "2019-03-23T22:21:24.163Z", "contributors": [ - "wbamberg", - "Legioinvicta", - "alispivak" + "Legioinvicta" ] }, - "MDN/Contribute/Feedback": { - "modified": "2020-09-30T17:50:23.893Z", + "Web/CSS/:nth-last-child": { + "modified": "2019-03-23T22:21:28.310Z", "contributors": [ - "chrisdavidmills", - "jswisher", - "SphinxKnight", - "wbamberg", "Legioinvicta" ] }, - "MDN/Contribute/Getting_started": { - "modified": "2020-09-30T17:09:26.416Z", + "Web/CSS/:nth-last-of-type": { + "modified": "2019-03-23T22:21:29.535Z", "contributors": [ - "chrisdavidmills", - "carlesferreiro", - "jordibrus", - "teoli", - "Thalula", - "Toniher" + "Legioinvicta" ] }, - "MDN/Contribute/Howto": { - "modified": "2020-12-14T11:30:11.093Z", + "Web/CSS/:nth-of-type": { + "modified": "2019-03-23T22:21:34.038Z", "contributors": [ - "ExE-Boss" + "Legioinvicta" ] }, - "MDN/Contribute/Howto/Crear_un_compte_MDN": { - "modified": "2019-03-18T21:20:46.294Z", + "Web/CSS/:only-child": { + "modified": "2019-03-18T21:15:27.539Z", "contributors": [ - "jordibrus" + "Legioinvicta" ] }, - "MDN/Contribute/Processos": { - "modified": "2019-01-17T01:56:28.494Z", + "Web/CSS/:only-of-type": { + "modified": "2019-03-23T22:21:32.125Z", "contributors": [ - "wbamberg", "Legioinvicta" ] }, - "MDN/Kuma": { - "modified": "2019-09-09T15:51:48.851Z", + "Web/CSS/:optional": { + "modified": "2019-03-23T22:21:26.032Z", "contributors": [ - "SphinxKnight", - "wbamberg", "Legioinvicta" ] }, - "MDN/Structures": { - "modified": "2020-09-30T09:04:30.231Z", + "Web/CSS/:out-of-range": { + "modified": "2019-03-23T22:21:27.814Z", "contributors": [ - "chrisdavidmills", - "wbamberg", "Legioinvicta" ] }, - "MDN_at_ten": { - "modified": "2019-03-23T22:45:53.203Z", + "Web/CSS/:placeholder-shown": { + "modified": "2019-03-23T22:21:28.063Z", "contributors": [ - "llue" + "Legioinvicta" ] }, - "Mozilla": { - "modified": "2019-03-23T23:35:10.538Z", + "Web/CSS/:read-only": { + "modified": "2020-10-15T21:51:14.863Z", "contributors": [ - "djpaliobcn", - "ethertank" + "fscholz", + "Legioinvicta" ] }, - "Mozilla/Firefox": { - "modified": "2019-09-10T14:45:53.524Z", + "Web/CSS/:read-write": { + "modified": "2020-10-15T21:51:12.394Z", "contributors": [ - "SphinxKnight", - "Prashanth" + "fscholz", + "Legioinvicta" ] }, - "Mozilla/Firefox/Releases": { - "modified": "2019-03-23T23:26:02.407Z", + "Web/CSS/:required": { + "modified": "2019-03-23T22:21:20.361Z", "contributors": [ - "ziyunfei" + "Legioinvicta" ] }, - "Tools": { - "modified": "2020-07-16T22:44:13.837Z", + "Web/CSS/:right": { + "modified": "2019-03-18T21:16:34.262Z", "contributors": [ - "SphinxKnight", - "wbamberg", - "Legioinvicta", - "jryans" + "Legioinvicta" ] }, - "Tools/Remote_Debugging": { - "modified": "2020-07-16T22:35:36.985Z", + "Web/CSS/:root": { + "modified": "2019-03-23T22:21:13.641Z", "contributors": [ - "wbamberg", - "Legioinvicta", - "jryans" + "Legioinvicta" ] }, - "Web": { - "modified": "2019-08-08T04:25:52.925Z", + "Web/CSS/:scope": { + "modified": "2020-04-20T18:27:58.028Z", "contributors": [ - "Legioinvicta", - "ethertank" + "albertms10", + "Legioinvicta" ] }, - "Web/API": { - "modified": "2019-09-22T13:24:34.476Z", + "Web/CSS/:target": { + "modified": "2019-03-23T22:21:16.673Z", "contributors": [ - "duduindo", - "escufi" + "Legioinvicta" ] }, - "Web/API/Canvas_API": { - "modified": "2019-03-23T22:04:17.711Z", + "Web/CSS/:valid": { + "modified": "2020-10-15T21:51:22.420Z", "contributors": [ + "fscholz", "Legioinvicta" ] }, - "Web/API/Canvas_API/Tutorial": { - "modified": "2019-03-23T22:04:21.400Z", + "Web/CSS/:visited": { + "modified": "2019-03-23T22:21:19.720Z", "contributors": [ - "stephaniehobson" + "Legioinvicta" ] }, - "Web/API/Canvas_API/Tutorial/Animacions_avançades": { - "modified": "2019-03-23T22:03:52.604Z", + "Web/CSS/At-rule": { + "modified": "2019-03-23T22:04:58.324Z", "contributors": [ "Legioinvicta" ] }, - "Web/API/Canvas_API/Tutorial/Animacions_bàsiques": { - "modified": "2019-03-23T22:03:56.826Z", + "Web/CSS/CSS_Box_Model": { + "modified": "2019-03-23T22:05:29.525Z", "contributors": [ "Legioinvicta" ] }, - "Web/API/Canvas_API/Tutorial/Aplicar_estils_i_colors": { - "modified": "2019-03-23T22:04:05.578Z", + "Web/CSS/CSS_Flexible_Box_Layout": { + "modified": "2019-03-23T22:43:45.358Z", "contributors": [ - "Legioinvicta" + "fscholz" ] }, - "Web/API/Canvas_API/Tutorial/Composició": { - "modified": "2019-03-23T22:04:02.955Z", + "Web/CSS/box-sizing": { + "modified": "2019-03-18T20:37:36.899Z", "contributors": [ + "Soyaine", "Legioinvicta" ] }, - "Web/API/Canvas_API/Tutorial/Dibuixar_text": { - "modified": "2019-03-23T22:04:09.548Z", + "Web/CSS/height": { + "modified": "2019-03-23T22:05:15.436Z", "contributors": [ "Legioinvicta" ] }, - "Web/API/Canvas_API/Tutorial/Drawing_shapes": { - "modified": "2019-03-23T22:04:18.638Z", + "Web/CSS/margin": { + "modified": "2019-03-23T22:05:19.140Z", "contributors": [ "Legioinvicta" ] }, - "Web/API/Canvas_API/Tutorial/Manipular_píxels_amb_canvas": { - "modified": "2020-10-22T19:57:12.300Z", + "Web/CSS/margin-bottom": { + "modified": "2019-03-23T22:05:16.692Z", "contributors": [ - "escattone", "Legioinvicta" ] }, - "Web/API/Canvas_API/Tutorial/Transformacions": { - "modified": "2019-03-23T22:03:59.945Z", + "Web/CSS/margin-left": { + "modified": "2019-03-23T22:05:15.717Z", "contributors": [ "Legioinvicta" ] }, - "Web/API/Canvas_API/Tutorial/Using_images": { - "modified": "2019-03-23T22:04:03.392Z", + "Web/CSS/margin-right": { + "modified": "2019-03-18T21:15:06.649Z", "contributors": [ "Legioinvicta" ] }, - "Web/API/Canvas_API/Tutorial/Ús_bàsic": { - "modified": "2019-03-23T22:04:22.078Z", + "Web/CSS/margin-top": { + "modified": "2019-03-23T22:05:18.254Z", "contributors": [ "Legioinvicta" ] }, - "Web/API/WebGL_API": { - "modified": "2019-03-23T22:04:45.878Z", + "Web/CSS/margin-trim": { + "modified": "2020-10-15T22:33:48.620Z", "contributors": [ - "ibesora" + "Legioinvicta" ] }, - "Web/API/Window": { - "modified": "2019-03-23T22:02:56.882Z", + "Web/CSS/max-height": { + "modified": "2019-03-18T21:16:33.676Z", "contributors": [ - "chrisdavidmills" + "Legioinvicta" ] }, - "Web/API/Window/sidebar": { - "modified": "2019-03-23T22:03:04.245Z", + "Web/CSS/max-width": { + "modified": "2019-03-23T22:05:19.856Z", "contributors": [ - "IsaacSchemm" + "Legioinvicta" ] }, - "Web/CSS": { - "modified": "2019-09-11T03:34:02.747Z", + "Web/CSS/min-height": { + "modified": "2019-03-23T22:05:14.466Z", "contributors": [ - "SphinxKnight", - "Legioinvicta", - "teoli", - "Arnau-siches" + "Legioinvicta" ] }, - "Web/CSS/::-moz-progress-bar": { - "modified": "2019-03-23T22:21:20.781Z", + "Web/CSS/min-width": { + "modified": "2019-03-23T22:05:14.719Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/::-moz-range-progress": { - "modified": "2019-03-18T21:17:32.107Z", + "Web/CSS/overflow": { + "modified": "2019-03-23T22:05:08.424Z", "contributors": [ - "teoli", "Legioinvicta" ] }, - "Web/CSS/::-moz-range-thumb": { - "modified": "2019-03-23T22:21:12.717Z", + "Web/CSS/overflow-x": { + "modified": "2019-03-23T22:05:13.081Z", "contributors": [ - "teoli", "Legioinvicta" ] }, - "Web/CSS/::-moz-range-track": { - "modified": "2019-03-23T22:21:19.893Z", + "Web/CSS/overflow-y": { + "modified": "2019-03-23T22:05:11.405Z", "contributors": [ - "teoli", "Legioinvicta" ] }, - "Web/CSS/::-webkit-progress-bar": { - "modified": "2019-03-23T22:21:15.673Z", + "Web/CSS/overscroll-behavior": { + "modified": "2020-10-15T22:33:48.574Z", "contributors": [ - "teoli", "Legioinvicta" ] }, - "Web/CSS/::-webkit-progress-value": { - "modified": "2019-03-23T22:21:12.226Z", + "Web/CSS/overscroll-behavior-block": { + "modified": "2020-10-15T22:33:50.202Z", "contributors": [ - "teoli", "Legioinvicta" ] }, - "Web/CSS/::-webkit-slider-runnable-track": { - "modified": "2019-03-23T22:21:12.535Z", + "Web/CSS/overscroll-behavior-inline": { + "modified": "2020-10-15T22:33:51.702Z", "contributors": [ - "teoli", "Legioinvicta" ] }, - "Web/CSS/::-webkit-slider-thumb": { - "modified": "2019-03-23T22:21:19.418Z", + "Web/CSS/padding": { + "modified": "2019-03-23T22:05:08.048Z", "contributors": [ - "teoli", "Legioinvicta" ] }, - "Web/CSS/::after": { - "modified": "2019-03-23T22:21:16.467Z", + "Web/CSS/padding-bottom": { + "modified": "2019-03-23T22:05:02.662Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/::backdrop": { - "modified": "2019-03-23T22:21:14.990Z", + "Web/CSS/padding-left": { + "modified": "2019-03-23T22:05:12.888Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/::before": { - "modified": "2019-03-23T22:21:17.379Z", + "Web/CSS/padding-right": { + "modified": "2019-03-23T22:05:09.745Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/::cue": { - "modified": "2020-10-15T21:58:05.485Z", + "Web/CSS/padding-top": { + "modified": "2019-03-23T22:05:10.966Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/::first-letter": { - "modified": "2019-03-23T22:21:13.268Z", + "Web/CSS/visibility": { + "modified": "2019-03-23T22:05:05.259Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/::first-line": { - "modified": "2020-10-15T21:51:25.818Z", + "Web/CSS/width": { + "modified": "2020-10-15T21:57:46.481Z", "contributors": [ - "SphinxKnight", "Legioinvicta" ] }, - "Web/CSS/::placeholder": { - "modified": "2019-03-23T22:04:44.753Z", + "Web/Guide": { + "modified": "2019-03-23T22:24:15.468Z", "contributors": [ - "Legioinvicta" + "Legioinvicta", + "Sheppy" ] }, - "Web/CSS/::selection": { - "modified": "2019-03-23T22:21:15.861Z", + "Web/Guide/AJAX": { + "modified": "2019-01-16T14:16:48.471Z", "contributors": [ - "Legioinvicta", - "Winni-" + "chrisdavidmills", + "moluxs", + "Oriolm", + "Toniher" ] }, - "Web/CSS/:active": { - "modified": "2019-03-23T22:21:47.358Z", + "Web/Guide/HTML/HTML5": { + "modified": "2019-03-23T22:19:42.811Z", "contributors": [ - "fscholz", "Legioinvicta" ] }, - "Web/CSS/:any": { - "modified": "2019-03-23T22:21:40.467Z", + "Web/HTML": { + "modified": "2020-02-22T22:24:38.027Z", "contributors": [ - "Legioinvicta" + "Ernest", + "SphinxKnight", + "Legioinvicta", + "joanprimpratrec2", + "fscholz", + "teoli" ] }, - "Web/CSS/:any-link": { - "modified": "2020-10-15T21:51:11.202Z", + "Web/HTML/Block-level_elements": { + "modified": "2019-03-23T22:24:26.228Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:checked": { - "modified": "2019-03-23T22:21:43.524Z", + "Web/HTML/Element": { + "modified": "2019-03-23T23:02:54.251Z", "contributors": [ - "Legioinvicta" + "Legioinvicta", + "aeinbu", + "teoli" ] }, - "Web/CSS/:default": { - "modified": "2019-03-23T22:21:38.352Z", + "Web/HTML/Element/Heading_Elements": { + "modified": "2019-03-23T22:22:40.062Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:dir": { - "modified": "2020-10-15T21:51:13.134Z", + "Web/HTML/Element/Shadow": { + "modified": "2019-03-23T22:22:58.573Z", "contributors": [ - "SphinxKnight", "Legioinvicta" ] }, - "Web/CSS/:disabled": { - "modified": "2019-03-23T22:21:32.327Z", + "Web/HTML/Element/a": { + "modified": "2019-03-23T23:02:50.885Z", "contributors": [ - "Legioinvicta" + "Legioinvicta", + "llue" ] }, - "Web/CSS/:empty": { - "modified": "2019-03-23T22:21:35.505Z", + "Web/HTML/Element/abbr": { + "modified": "2020-08-14T22:29:34.312Z", "contributors": [ - "Legioinvicta" + "llue", + "fscholz" ] }, - "Web/CSS/:enabled": { - "modified": "2019-03-23T22:21:33.868Z", + "Web/HTML/Element/acronym": { + "modified": "2019-03-23T22:24:06.082Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:first": { - "modified": "2019-03-23T22:21:35.151Z", + "Web/HTML/Element/address": { + "modified": "2019-03-23T22:24:30.575Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:first-child": { - "modified": "2019-03-23T22:21:24.465Z", + "Web/HTML/Element/applet": { + "modified": "2019-03-23T22:24:01.530Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:first-of-type": { - "modified": "2019-03-23T22:21:27.205Z", + "Web/HTML/Element/area": { + "modified": "2019-03-23T22:24:34.904Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:focus": { - "modified": "2019-03-23T22:21:23.494Z", + "Web/HTML/Element/article": { + "modified": "2019-03-23T22:24:37.217Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:focus-within": { - "modified": "2019-03-23T22:21:26.997Z", + "Web/HTML/Element/aside": { + "modified": "2019-03-23T23:02:54.425Z", "contributors": [ - "Legioinvicta" + "llue" ] }, - "Web/CSS/:fullscreen": { - "modified": "2019-03-23T22:21:26.360Z", + "Web/HTML/Element/audio": { + "modified": "2019-03-23T22:24:31.743Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:hover": { - "modified": "2019-03-23T22:21:27.607Z", + "Web/HTML/Element/b": { + "modified": "2019-03-23T22:24:36.355Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:in-range": { - "modified": "2020-10-15T21:51:14.757Z", + "Web/HTML/Element/base": { + "modified": "2019-03-23T22:24:29.858Z", "contributors": [ - "SphinxKnight", "Legioinvicta" ] }, - "Web/CSS/:indeterminate": { - "modified": "2020-10-15T21:51:13.811Z", + "Web/HTML/Element/basefont": { + "modified": "2019-03-23T22:24:06.575Z", "contributors": [ - "fscholz", "Legioinvicta" ] }, - "Web/CSS/:invalid": { - "modified": "2020-10-15T21:51:13.214Z", + "Web/HTML/Element/bdi": { + "modified": "2019-03-23T22:24:35.937Z", "contributors": [ - "fscholz", "Legioinvicta" ] }, - "Web/CSS/:lang": { - "modified": "2019-03-23T22:21:33.229Z", + "Web/HTML/Element/bdo": { + "modified": "2019-03-23T22:24:30.076Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:last-child": { - "modified": "2019-03-23T22:21:25.832Z", + "Web/HTML/Element/bgsound": { + "modified": "2019-03-23T22:24:00.548Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:last-of-type": { - "modified": "2019-03-23T22:21:30.611Z", + "Web/HTML/Element/big": { + "modified": "2019-03-23T22:23:59.751Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:left": { - "modified": "2019-03-23T22:21:34.439Z", + "Web/HTML/Element/blink": { + "modified": "2019-03-23T22:24:06.248Z", "contributors": [ + "teoli", "Legioinvicta" ] }, - "Web/CSS/:link": { - "modified": "2019-03-23T22:21:32.532Z", + "Web/HTML/Element/blockquote": { + "modified": "2019-03-23T22:24:32.254Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:not": { - "modified": "2019-03-23T22:21:28.771Z", + "Web/HTML/Element/body": { + "modified": "2019-03-23T22:24:37.533Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:nth-child": { - "modified": "2019-03-23T22:21:24.163Z", + "Web/HTML/Element/br": { + "modified": "2019-03-23T23:02:56.324Z", "contributors": [ - "Legioinvicta" + "llue" ] }, - "Web/CSS/:nth-last-child": { - "modified": "2019-03-23T22:21:28.310Z", + "Web/HTML/Element/button": { + "modified": "2019-03-23T22:24:31.103Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:nth-last-of-type": { - "modified": "2019-03-23T22:21:29.535Z", + "Web/HTML/Element/canvas": { + "modified": "2019-03-23T22:24:30.337Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:nth-of-type": { - "modified": "2019-03-23T22:21:34.038Z", + "Web/HTML/Element/caption": { + "modified": "2019-03-23T22:24:33.007Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:only-child": { - "modified": "2019-03-18T21:15:27.539Z", + "Web/HTML/Element/center": { + "modified": "2019-03-23T22:24:00.968Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:only-of-type": { - "modified": "2019-03-23T22:21:32.125Z", + "Web/HTML/Element/cite": { + "modified": "2019-03-23T22:24:35.142Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:optional": { - "modified": "2019-03-23T22:21:26.032Z", + "Web/HTML/Element/code": { + "modified": "2019-03-23T22:24:36.137Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:out-of-range": { - "modified": "2019-03-23T22:21:27.814Z", + "Web/HTML/Element/col": { + "modified": "2019-03-23T22:24:15.868Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:placeholder-shown": { - "modified": "2019-03-23T22:21:28.063Z", + "Web/HTML/Element/colgroup": { + "modified": "2019-03-23T22:24:15.101Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:read-only": { - "modified": "2020-10-15T21:51:14.863Z", + "Web/HTML/Element/content": { + "modified": "2019-03-23T22:24:11.640Z", "contributors": [ - "fscholz", "Legioinvicta" ] }, - "Web/CSS/:read-write": { - "modified": "2020-10-15T21:51:12.394Z", + "Web/HTML/Element/data": { + "modified": "2019-03-23T22:24:12.906Z", "contributors": [ - "fscholz", "Legioinvicta" ] }, - "Web/CSS/:required": { - "modified": "2019-03-23T22:21:20.361Z", + "Web/HTML/Element/datalist": { + "modified": "2019-03-23T22:24:16.075Z", "contributors": [ + "mfranzke", "Legioinvicta" ] }, - "Web/CSS/:right": { - "modified": "2019-03-18T21:16:34.262Z", + "Web/HTML/Element/dd": { + "modified": "2019-03-23T22:24:21.875Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:root": { - "modified": "2019-03-23T22:21:13.641Z", + "Web/HTML/Element/del": { + "modified": "2019-03-23T22:24:05.886Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:scope": { - "modified": "2020-04-20T18:27:58.028Z", + "Web/HTML/Element/details": { + "modified": "2019-03-23T22:24:07.263Z", "contributors": [ - "albertms10", "Legioinvicta" ] }, - "Web/CSS/:target": { - "modified": "2019-03-23T22:21:16.673Z", + "Web/HTML/Element/dfn": { + "modified": "2019-03-23T22:24:03.887Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/:valid": { - "modified": "2020-10-15T21:51:22.420Z", + "Web/HTML/Element/dialog": { + "modified": "2019-03-23T22:24:06.889Z", "contributors": [ - "fscholz", "Legioinvicta" ] }, - "Web/CSS/:visited": { - "modified": "2019-03-23T22:21:19.720Z", + "Web/HTML/Element/dir": { + "modified": "2019-03-23T22:23:59.059Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/At-rule": { - "modified": "2019-03-23T22:04:58.324Z", + "Web/HTML/Element/div": { + "modified": "2019-03-23T22:44:10.000Z", "contributors": [ - "Legioinvicta" + "llue" ] }, - "Web/CSS/CSS_Box_Model": { - "modified": "2019-03-23T22:05:29.525Z", + "Web/HTML/Element/dl": { + "modified": "2019-03-23T22:23:57.383Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/CSS_Box_Model/Dominar_el_col.lapse_del_marge": { - "modified": "2019-03-18T21:17:29.185Z", + "Web/HTML/Element/dt": { + "modified": "2019-03-23T22:24:04.732Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/CSS_Box_Model/Introducció_al_model_de_caixa_CSS": { - "modified": "2019-03-18T21:15:28.600Z", + "Web/HTML/Element/em": { + "modified": "2019-03-23T22:23:56.965Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/CSS_Flexible_Box_Layout": { - "modified": "2019-03-23T22:43:45.358Z", + "Web/HTML/Element/embed": { + "modified": "2019-03-23T22:24:05.230Z", "contributors": [ - "fscholz" + "Legioinvicta" ] }, - "Web/CSS/Referéncia_CSS": { - "modified": "2019-03-23T22:21:55.917Z", + "Web/HTML/Element/fieldset": { + "modified": "2019-03-23T22:23:57.920Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/Selectors_CSS": { - "modified": "2019-07-10T09:40:26.803Z", + "Web/HTML/Element/figcaption": { + "modified": "2019-03-23T22:24:05.668Z", "contributors": [ - "gavinsykes", "Legioinvicta" ] }, - "Web/CSS/Selectors_CSS/Using_the_:target_pseudo-class_in_selectors": { - "modified": "2019-03-23T22:21:45.619Z", + "Web/HTML/Element/figure": { + "modified": "2019-03-23T22:24:01.197Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/Selectors_ID": { - "modified": "2019-03-18T21:15:31.059Z", + "Web/HTML/Element/font": { + "modified": "2019-03-23T22:24:06.405Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/Selectors_Universal": { - "modified": "2019-03-23T22:21:38.063Z", + "Web/HTML/Element/footer": { + "modified": "2019-03-23T22:23:57.162Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/Selectors_d'Atribut": { - "modified": "2019-03-23T22:21:47.586Z", + "Web/HTML/Element/form": { + "modified": "2019-03-23T22:24:03.654Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/Selectors_de_Classe": { - "modified": "2019-03-23T22:21:40.826Z", + "Web/HTML/Element/frame": { + "modified": "2019-03-23T22:23:58.069Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/Selectors_de_Tipus": { - "modified": "2019-03-23T22:21:49.346Z", + "Web/HTML/Element/frameset": { + "modified": "2019-03-23T22:24:00.833Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/Selectors_de_descendents": { - "modified": "2019-03-23T22:21:41.801Z", + "Web/HTML/Element/head": { + "modified": "2019-03-23T22:23:58.845Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/Selectors_de_fills": { - "modified": "2019-03-23T22:21:37.309Z", + "Web/HTML/Element/header": { + "modified": "2019-03-23T22:23:59.258Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/Selectors_de_germans_adjacents": { - "modified": "2019-03-23T22:21:40.662Z", + "Web/HTML/Element/hgroup": { + "modified": "2019-03-23T22:23:59.587Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/Selectors_general_de_germans": { - "modified": "2019-03-23T22:21:39.817Z", + "Web/HTML/Element/hr": { + "modified": "2019-03-23T22:24:04.544Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/Sintaxi": { - "modified": "2019-03-23T22:05:30.508Z", + "Web/HTML/Element/html": { + "modified": "2019-03-23T22:23:44.381Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/box-sizing": { - "modified": "2019-03-18T20:37:36.899Z", + "Web/HTML/Element/i": { + "modified": "2019-03-23T22:23:44.141Z", "contributors": [ - "Soyaine", "Legioinvicta" ] }, - "Web/CSS/height": { - "modified": "2019-03-23T22:05:15.436Z", + "Web/HTML/Element/iframe": { + "modified": "2019-03-23T22:23:45.300Z", "contributors": [ + "wbamberg", "Legioinvicta" ] }, - "Web/CSS/margin": { - "modified": "2019-03-23T22:05:19.140Z", + "Web/HTML/Element/image": { + "modified": "2019-03-23T22:23:55.696Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/margin-bottom": { - "modified": "2019-03-23T22:05:16.692Z", + "Web/HTML/Element/img": { + "modified": "2019-03-23T22:23:44.825Z", "contributors": [ + "rcomellas", "Legioinvicta" ] }, - "Web/CSS/margin-left": { - "modified": "2019-03-23T22:05:15.717Z", + "Web/HTML/Element/input": { + "modified": "2020-12-11T04:26:56.268Z", "contributors": [ + "jaumeol", "Legioinvicta" ] }, - "Web/CSS/margin-right": { - "modified": "2019-03-18T21:15:06.649Z", + "Web/HTML/Element/ins": { + "modified": "2019-03-23T22:23:31.337Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/margin-top": { - "modified": "2019-03-23T22:05:18.254Z", + "Web/HTML/Element/isindex": { + "modified": "2019-03-23T22:23:32.350Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/margin-trim": { - "modified": "2020-10-15T22:33:48.620Z", + "Web/HTML/Element/kbd": { + "modified": "2019-03-23T22:23:30.123Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/max-height": { - "modified": "2019-03-18T21:16:33.676Z", + "Web/HTML/Element/keygen": { + "modified": "2019-03-23T22:23:29.875Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/max-width": { - "modified": "2019-03-23T22:05:19.856Z", + "Web/HTML/Element/label": { + "modified": "2019-03-23T22:23:25.920Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/min-height": { - "modified": "2019-03-23T22:05:14.466Z", + "Web/HTML/Element/legend": { + "modified": "2019-03-23T22:23:27.067Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/min-width": { - "modified": "2019-03-23T22:05:14.719Z", + "Web/HTML/Element/li": { + "modified": "2019-03-23T22:23:30.535Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/overflow": { - "modified": "2019-03-23T22:05:08.424Z", + "Web/HTML/Element/link": { + "modified": "2019-03-23T22:23:31.095Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/overflow-x": { - "modified": "2019-03-23T22:05:13.081Z", + "Web/HTML/Element/listing": { + "modified": "2019-03-23T22:23:31.930Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/overflow-y": { - "modified": "2019-03-23T22:05:11.405Z", + "Web/HTML/Element/main": { + "modified": "2019-03-23T22:23:29.013Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/overscroll-behavior": { - "modified": "2020-10-15T22:33:48.574Z", + "Web/HTML/Element/map": { + "modified": "2019-03-23T22:23:28.443Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/overscroll-behavior-block": { - "modified": "2020-10-15T22:33:50.202Z", + "Web/HTML/Element/mark": { + "modified": "2019-03-23T22:23:29.469Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/overscroll-behavior-inline": { - "modified": "2020-10-15T22:33:51.702Z", + "Web/HTML/Element/marquee": { + "modified": "2019-03-23T22:23:25.351Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/padding": { - "modified": "2019-03-23T22:05:08.048Z", + "Web/HTML/Element/menu": { + "modified": "2019-03-23T22:43:53.972Z", "contributors": [ - "Legioinvicta" + "llue" ] }, - "Web/CSS/padding-bottom": { - "modified": "2019-03-23T22:05:02.662Z", + "Web/HTML/Element/menuitem": { + "modified": "2019-03-23T22:23:24.576Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/padding-left": { - "modified": "2019-03-23T22:05:12.888Z", + "Web/HTML/Element/meta": { + "modified": "2019-03-23T22:23:14.832Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/padding-right": { - "modified": "2019-03-23T22:05:09.745Z", + "Web/HTML/Element/meter": { + "modified": "2019-03-23T22:23:09.097Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/padding-top": { - "modified": "2019-03-23T22:05:10.966Z", + "Web/HTML/Element/multicol": { + "modified": "2019-03-23T22:23:18.874Z", "contributors": [ "Legioinvicta" ] }, - "Web/CSS/visibility": { - "modified": "2019-03-23T22:05:05.259Z", + "Web/HTML/Element/nav": { + "modified": "2019-03-23T22:48:17.923Z", "contributors": [ - "Legioinvicta" + "wbamberg", + "llue" ] }, - "Web/CSS/width": { - "modified": "2020-10-15T21:57:46.481Z", + "Web/HTML/Element/nextid": { + "modified": "2019-03-23T22:22:37.005Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide": { - "modified": "2019-03-23T22:24:15.468Z", + "Web/HTML/Element/nobr": { + "modified": "2019-03-23T22:23:17.356Z", "contributors": [ - "Legioinvicta", - "Sheppy" + "Legioinvicta" ] }, - "Web/Guide/AJAX": { - "modified": "2019-01-16T14:16:48.471Z", + "Web/HTML/Element/noembed": { + "modified": "2019-03-23T22:23:16.262Z", "contributors": [ - "chrisdavidmills", - "moluxs", - "Oriolm", - "Toniher" + "Legioinvicta" ] }, - "Web/Guide/AJAX/Primers_passos": { - "modified": "2019-01-16T16:22:29.202Z", + "Web/HTML/Element/noframes": { + "modified": "2019-03-23T22:23:17.870Z", "contributors": [ - "chrisdavidmills", - "Toniher" + "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS": { - "modified": "2019-03-23T22:22:04.507Z", + "Web/HTML/Element/noscript": { + "modified": "2019-03-23T22:23:12.362Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/CSS_llegible": { - "modified": "2019-03-23T22:20:58.263Z", + "Web/HTML/Element/object": { + "modified": "2019-03-23T22:23:08.187Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Caixes": { - "modified": "2019-03-23T22:21:00.737Z", + "Web/HTML/Element/ol": { + "modified": "2019-03-23T22:23:11.431Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Cascada_i_herència": { - "modified": "2019-03-23T22:21:11.477Z", + "Web/HTML/Element/optgroup": { + "modified": "2019-03-23T22:23:08.674Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Color": { - "modified": "2019-03-23T22:20:58.899Z", + "Web/HTML/Element/option": { + "modified": "2019-03-23T22:23:17.744Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Com_funciona_el_CSS": { - "modified": "2019-03-23T22:21:14.792Z", + "Web/HTML/Element/output": { + "modified": "2019-03-23T22:23:07.934Z", "contributors": [ + "wbamberg", "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Disseny": { - "modified": "2019-03-23T22:20:52.030Z", + "Web/HTML/Element/p": { + "modified": "2019-03-23T22:22:56.526Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Estils_de_text": { - "modified": "2019-03-23T22:21:09.957Z", + "Web/HTML/Element/param": { + "modified": "2019-03-23T22:23:02.418Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/JavaScript": { - "modified": "2019-03-23T22:20:34.923Z", + "Web/HTML/Element/picture": { + "modified": "2019-03-23T22:23:01.844Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Llistes": { - "modified": "2019-03-23T22:21:00.463Z", + "Web/HTML/Element/plaintext": { + "modified": "2019-03-23T22:22:59.391Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Mitjà": { - "modified": "2019-03-23T22:20:43.883Z", + "Web/HTML/Element/pre": { + "modified": "2019-03-23T22:23:02.683Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Per_què_utilitzar_CSS": { - "modified": "2019-03-23T22:21:21.787Z", + "Web/HTML/Element/progress": { + "modified": "2019-03-23T22:22:54.749Z", "contributors": [ + "wbamberg", "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Que_és_CSS": { - "modified": "2019-03-23T22:21:22.840Z", + "Web/HTML/Element/q": { + "modified": "2020-10-15T21:50:56.392Z", "contributors": [ + "fscholz", "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/SVG_i_CSS": { - "modified": "2019-03-23T22:20:34.731Z", + "Web/HTML/Element/rp": { + "modified": "2019-03-23T22:22:55.170Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Selectors": { - "modified": "2019-03-23T22:21:02.763Z", + "Web/HTML/Element/rt": { + "modified": "2019-03-23T22:22:59.953Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/CSS/Inici_en_CSS/Taules": { - "modified": "2019-03-23T22:20:47.336Z", + "Web/HTML/Element/rtc": { + "modified": "2019-03-23T22:22:57.513Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/Gràfics": { - "modified": "2019-03-23T22:04:22.823Z", + "Web/HTML/Element/ruby": { + "modified": "2019-03-23T22:48:18.101Z", + "contributors": [ + "llue" + ] + }, + "Web/HTML/Element/s": { + "modified": "2019-03-23T22:23:02.208Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/HTML/HTML5": { - "modified": "2019-03-23T22:19:42.811Z", + "Web/HTML/Element/samp": { + "modified": "2019-03-23T22:22:59.763Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/HTML/Us_de_seccions_i_esquemes_en_HTML": { - "modified": "2019-03-23T22:19:14.112Z", + "Web/HTML/Element/script": { + "modified": "2019-03-23T22:22:58.125Z", "contributors": [ "Legioinvicta" ] }, - "Web/Guide/HTML/_Consells_per_crear_pàgines_HTML_de_càrrega_ràpida": { - "modified": "2020-07-16T22:22:32.019Z", + "Web/HTML/Element/section": { + "modified": "2019-03-23T22:23:02.047Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML": { - "modified": "2020-02-22T22:24:38.027Z", + "Web/HTML/Element/select": { + "modified": "2019-03-23T22:22:53.707Z", "contributors": [ - "Ernest", - "SphinxKnight", - "Legioinvicta", - "joanprimpratrec2", - "fscholz", - "teoli" + "Legioinvicta" ] }, - "Web/HTML/Block-level_elements": { - "modified": "2019-03-23T22:24:26.228Z", + "Web/HTML/Element/small": { + "modified": "2019-03-23T22:22:57.046Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element": { - "modified": "2019-03-23T23:02:54.251Z", + "Web/HTML/Element/source": { + "modified": "2019-03-23T22:23:01.454Z", "contributors": [ - "Legioinvicta", - "aeinbu", - "teoli" + "Legioinvicta" ] }, - "Web/HTML/Element/Heading_Elements": { - "modified": "2019-03-23T22:22:40.062Z", + "Web/HTML/Element/spacer": { + "modified": "2019-03-23T22:23:01.649Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/Shadow": { - "modified": "2019-03-23T22:22:58.573Z", + "Web/HTML/Element/span": { + "modified": "2019-03-23T22:22:57.324Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/a": { - "modified": "2019-03-23T23:02:50.885Z", + "Web/HTML/Element/strike": { + "modified": "2019-03-23T22:22:53.130Z", "contributors": [ - "Legioinvicta", - "llue" + "Legioinvicta" ] }, - "Web/HTML/Element/abbr": { - "modified": "2020-08-14T22:29:34.312Z", + "Web/HTML/Element/strong": { + "modified": "2019-03-23T22:23:00.673Z", "contributors": [ - "llue", - "fscholz" + "Legioinvicta" ] }, - "Web/HTML/Element/acronym": { - "modified": "2019-03-23T22:24:06.082Z", + "Web/HTML/Element/style": { + "modified": "2019-03-23T22:22:54.521Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/address": { - "modified": "2019-03-23T22:24:30.575Z", + "Web/HTML/Element/sub": { + "modified": "2019-03-23T22:23:00.459Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/applet": { - "modified": "2019-03-23T22:24:01.530Z", + "Web/HTML/Element/summary": { + "modified": "2019-03-23T22:22:43.871Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/area": { - "modified": "2019-03-23T22:24:34.904Z", + "Web/HTML/Element/sup": { + "modified": "2019-03-23T22:22:44.577Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/article": { - "modified": "2019-03-23T22:24:37.217Z", + "Web/HTML/Element/table": { + "modified": "2019-03-23T22:22:37.782Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/aside": { - "modified": "2019-03-23T23:02:54.425Z", + "Web/HTML/Element/tbody": { + "modified": "2019-03-23T22:22:38.557Z", "contributors": [ - "llue" + "Legioinvicta" ] }, - "Web/HTML/Element/audio": { - "modified": "2019-03-23T22:24:31.743Z", + "Web/HTML/Element/td": { + "modified": "2019-03-23T22:22:36.618Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/b": { - "modified": "2019-03-23T22:24:36.355Z", + "Web/HTML/Element/template": { + "modified": "2019-03-23T22:22:36.185Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/base": { - "modified": "2019-03-23T22:24:29.858Z", + "Web/HTML/Element/textarea": { + "modified": "2020-10-15T21:50:57.306Z", "contributors": [ + "fscholz", "Legioinvicta" ] }, - "Web/HTML/Element/basefont": { - "modified": "2019-03-23T22:24:06.575Z", + "Web/HTML/Element/tfoot": { + "modified": "2019-03-23T22:22:35.229Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/bdi": { - "modified": "2019-03-23T22:24:35.937Z", + "Web/HTML/Element/th": { + "modified": "2019-03-23T22:22:39.656Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/bdo": { - "modified": "2019-03-23T22:24:30.076Z", + "Web/HTML/Element/thead": { + "modified": "2020-10-15T21:50:57.690Z", "contributors": [ + "fscholz", "Legioinvicta" ] }, - "Web/HTML/Element/bgsound": { - "modified": "2019-03-23T22:24:00.548Z", + "Web/HTML/Element/time": { + "modified": "2019-03-23T22:22:41.833Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/big": { - "modified": "2019-03-23T22:23:59.751Z", + "Web/HTML/Element/tr": { + "modified": "2019-03-23T22:22:38.222Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/blink": { - "modified": "2019-03-23T22:24:06.248Z", + "Web/HTML/Element/track": { + "modified": "2019-03-23T22:22:43.012Z", "contributors": [ - "teoli", "Legioinvicta" ] }, - "Web/HTML/Element/blockquote": { - "modified": "2019-03-23T22:24:32.254Z", + "Web/HTML/Element/tt": { + "modified": "2019-03-23T22:22:39.819Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/body": { - "modified": "2019-03-23T22:24:37.533Z", + "Web/HTML/Element/u": { + "modified": "2019-03-23T22:22:42.717Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/br": { - "modified": "2019-03-23T23:02:56.324Z", + "Web/HTML/Element/ul": { + "modified": "2019-03-23T22:22:42.253Z", "contributors": [ - "llue" + "Legioinvicta" ] }, - "Web/HTML/Element/button": { - "modified": "2019-03-23T22:24:31.103Z", + "Web/HTML/Element/var": { + "modified": "2019-03-23T22:22:43.305Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/canvas": { - "modified": "2019-03-23T22:24:30.337Z", + "Web/HTML/Element/video": { + "modified": "2019-03-23T22:22:39.252Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/caption": { - "modified": "2019-03-23T22:24:33.007Z", + "Web/HTML/Element/wbr": { + "modified": "2019-03-23T22:22:41.607Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/center": { - "modified": "2019-03-23T22:24:00.968Z", + "Web/HTML/Element/xmp": { + "modified": "2019-03-23T22:22:35.712Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/cite": { - "modified": "2019-03-23T22:24:35.142Z", + "Web/HTML/Global_attributes": { + "modified": "2019-03-23T23:02:43.690Z", "contributors": [ - "Legioinvicta" + "teoli" ] }, - "Web/HTML/Element/code": { - "modified": "2019-03-23T22:24:36.137Z", + "Web/HTML/Global_attributes/accesskey": { + "modified": "2019-03-23T22:22:38.770Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/col": { - "modified": "2019-03-23T22:24:15.868Z", + "Web/HTML/Global_attributes/class": { + "modified": "2019-03-23T22:22:35.405Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/colgroup": { - "modified": "2019-03-23T22:24:15.101Z", + "Web/HTML/Global_attributes/contenteditable": { + "modified": "2019-03-23T22:22:43.650Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/command": { - "modified": "2019-03-23T22:24:15.300Z", + "Web/HTML/Global_attributes/contextmenu": { + "modified": "2020-10-15T21:50:47.437Z", "contributors": [ + "SphinxKnight", "Legioinvicta" ] }, - "Web/HTML/Element/content": { - "modified": "2019-03-23T22:24:11.640Z", + "Web/HTML/Global_attributes/data-*": { + "modified": "2019-03-23T22:22:26.612Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/data": { - "modified": "2019-03-23T22:24:12.906Z", + "Web/HTML/Global_attributes/dir": { + "modified": "2019-03-23T22:22:29.249Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/datalist": { - "modified": "2019-03-23T22:24:16.075Z", + "Web/HTML/Global_attributes/draggable": { + "modified": "2019-03-23T22:22:20.909Z", "contributors": [ - "mfranzke", "Legioinvicta" ] }, - "Web/HTML/Element/dd": { - "modified": "2019-03-23T22:24:21.875Z", + "Web/HTML/Global_attributes/hidden": { + "modified": "2019-03-23T22:22:17.448Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/del": { - "modified": "2019-03-23T22:24:05.886Z", + "Web/HTML/Global_attributes/id": { + "modified": "2019-03-23T22:22:26.785Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/details": { - "modified": "2019-03-23T22:24:07.263Z", + "Web/HTML/Global_attributes/itemid": { + "modified": "2019-03-23T22:22:24.180Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/dfn": { - "modified": "2019-03-23T22:24:03.887Z", + "Web/HTML/Global_attributes/itemprop": { + "modified": "2019-03-23T22:22:18.837Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/dialog": { - "modified": "2019-03-23T22:24:06.889Z", + "Web/HTML/Global_attributes/itemref": { + "modified": "2019-03-23T22:22:25.523Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/dir": { - "modified": "2019-03-23T22:23:59.059Z", + "Web/HTML/Global_attributes/itemscope": { + "modified": "2019-03-23T22:22:27.169Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/div": { - "modified": "2019-03-23T22:44:10.000Z", + "Web/HTML/Global_attributes/itemtype": { + "modified": "2019-03-23T22:22:24.967Z", "contributors": [ - "llue" + "Legioinvicta" ] }, - "Web/HTML/Element/dl": { - "modified": "2019-03-23T22:23:57.383Z", + "Web/HTML/Global_attributes/lang": { + "modified": "2019-03-23T23:02:45.670Z", "contributors": [ - "Legioinvicta" + "llue" ] }, - "Web/HTML/Element/dt": { - "modified": "2019-03-23T22:24:04.732Z", + "Web/HTML/Global_attributes/spellcheck": { + "modified": "2019-03-23T22:22:25.809Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/element": { - "modified": "2019-03-23T22:48:09.171Z", + "Web/HTML/Global_attributes/style": { + "modified": "2019-03-23T22:44:10.989Z", "contributors": [ "llue" ] }, - "Web/HTML/Element/em": { - "modified": "2019-03-23T22:23:56.965Z", + "Web/HTML/Global_attributes/tabindex": { + "modified": "2019-03-23T22:22:21.110Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/embed": { - "modified": "2019-03-23T22:24:05.230Z", + "Web/HTML/Global_attributes/title": { + "modified": "2019-03-23T22:22:28.134Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/fieldset": { - "modified": "2019-03-23T22:23:57.920Z", + "Web/HTML/Global_attributes/translate": { + "modified": "2019-03-23T22:22:25.290Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/figcaption": { - "modified": "2019-03-23T22:24:05.668Z", + "Web/JavaScript": { + "modified": "2020-03-12T19:38:14.951Z", "contributors": [ - "Legioinvicta" + "SphinxKnight", + "fv3rdugo", + "enTropy", + "teoli", + "allergic" ] }, - "Web/HTML/Element/figure": { - "modified": "2019-03-23T22:24:01.197Z", + "Web/JavaScript/A_re-introduction_to_JavaScript": { + "modified": "2020-03-12T19:41:33.097Z", "contributors": [ - "Legioinvicta" + "pere", + "teoli", + "joanprimpratrec2" ] }, - "Web/HTML/Element/font": { - "modified": "2019-03-23T22:24:06.405Z", + "Web/JavaScript/Data_structures": { + "modified": "2020-07-27T06:57:51.432Z", "contributors": [ - "Legioinvicta" + "joanpardo", + "enTropy" ] }, - "Web/HTML/Element/footer": { - "modified": "2019-03-23T22:23:57.162Z", + "Web/JavaScript/Enumerability_and_ownership_of_properties": { + "modified": "2020-03-12T19:40:53.838Z", "contributors": [ - "Legioinvicta" + "enTropy" ] }, - "Web/HTML/Element/form": { - "modified": "2019-03-23T22:24:03.654Z", + "Web/JavaScript/EventLoop": { + "modified": "2020-03-12T19:40:40.928Z", "contributors": [ - "Legioinvicta" + "enTropy" ] }, - "Web/HTML/Element/frame": { - "modified": "2019-03-23T22:23:58.069Z", + "Web/JavaScript/Guide": { + "modified": "2020-03-12T19:40:37.449Z", "contributors": [ - "Legioinvicta" + "enTropy", + "fscholz" ] }, - "Web/HTML/Element/frameset": { - "modified": "2019-03-23T22:24:00.833Z", + "Web/JavaScript/Guide/Details_of_the_Object_Model": { + "modified": "2020-03-12T19:40:52.288Z", "contributors": [ - "Legioinvicta" + "wbamberg", + "SphinxKnight", + "fscholz", + "enTropy" ] }, - "Web/HTML/Element/head": { - "modified": "2019-03-23T22:23:58.845Z", + "Web/JavaScript/Guide/Functions": { + "modified": "2020-03-12T19:40:36.377Z", "contributors": [ - "Legioinvicta" + "wbamberg", + "fscholz", + "enTropy", + "llue" ] }, - "Web/HTML/Element/header": { - "modified": "2019-03-23T22:23:59.258Z", + "Web/JavaScript/Inheritance_and_the_prototype_chain": { + "modified": "2020-03-12T19:42:16.312Z", "contributors": [ - "Legioinvicta" + "ibesora", + "enTropy" ] }, - "Web/HTML/Element/hgroup": { - "modified": "2019-03-23T22:23:59.587Z", + "Web/JavaScript/Language_Resources": { + "modified": "2020-03-12T19:40:36.891Z", "contributors": [ - "Legioinvicta" + "enTropy" ] }, - "Web/HTML/Element/hr": { - "modified": "2019-03-23T22:24:04.544Z", + "Web/JavaScript/Reference/Errors": { + "modified": "2020-03-12T19:48:06.943Z", "contributors": [ - "Legioinvicta" + "Sheppy" ] }, - "Web/HTML/Element/html": { - "modified": "2019-03-23T22:23:44.381Z", + "Web/JavaScript/Reference/Functions": { + "modified": "2020-03-12T19:42:52.475Z", "contributors": [ - "Legioinvicta" + "fscholz" ] }, - "Web/HTML/Element/i": { - "modified": "2019-03-23T22:23:44.141Z", + "Web/JavaScript/Reference/Functions/arguments": { + "modified": "2020-03-12T19:42:37.661Z", "contributors": [ - "Legioinvicta" + "mones-cse" ] }, - "Web/HTML/Element/iframe": { - "modified": "2019-03-23T22:23:45.300Z", + "Web/JavaScript/Reference/Functions/arguments/length": { + "modified": "2020-03-12T19:42:34.789Z", "contributors": [ - "wbamberg", - "Legioinvicta" + "llue" ] }, - "Web/HTML/Element/image": { - "modified": "2019-03-23T22:23:55.696Z", + "Web/JavaScript/Reference/Functions/get": { + "modified": "2020-03-12T19:43:33.264Z", "contributors": [ - "Legioinvicta" + "llue" ] }, - "Web/HTML/Element/img": { - "modified": "2019-03-23T22:23:44.825Z", + "Web/JavaScript/Reference/Global_Objects/DataView": { + "modified": "2019-03-23T22:46:12.658Z", "contributors": [ - "rcomellas", - "Legioinvicta" + "Sebastianz" ] }, - "Web/HTML/Element/input": { - "modified": "2020-12-11T04:26:56.268Z", + "Web/JavaScript/Reference/Global_Objects/DataView/buffer": { + "modified": "2019-03-23T22:44:07.496Z", "contributors": [ - "jaumeol", - "Legioinvicta" + "llue" ] }, - "Web/HTML/Element/ins": { - "modified": "2019-03-23T22:23:31.337Z", + "Web/JavaScript/Reference/Global_Objects/DataView/getFloat32": { + "modified": "2019-03-23T22:44:02.895Z", "contributors": [ - "Legioinvicta" + "enTropy", + "llue" ] }, - "Web/HTML/Element/isindex": { - "modified": "2019-03-23T22:23:32.350Z", + "Web/JavaScript/Reference/Global_Objects/EvalError": { + "modified": "2019-03-23T22:47:17.840Z", "contributors": [ - "Legioinvicta" + "fscholz" ] }, - "Web/HTML/Element/kbd": { - "modified": "2019-03-23T22:23:30.123Z", + "Web/JavaScript/Reference/Global_Objects/Function": { + "modified": "2019-03-23T22:47:58.251Z", "contributors": [ - "Legioinvicta" + "fscholz" ] }, - "Web/HTML/Element/keygen": { - "modified": "2019-03-23T22:23:29.875Z", + "Web/JavaScript/Reference/Global_Objects/Function/arguments": { + "modified": "2019-03-23T22:48:02.332Z", "contributors": [ - "Legioinvicta" + "llue" ] }, - "Web/HTML/Element/label": { - "modified": "2019-03-23T22:23:25.920Z", + "Web/JavaScript/Reference/Global_Objects/Function/caller": { + "modified": "2019-03-18T21:15:51.563Z", "contributors": [ - "Legioinvicta" + "teoli", + "llue" ] }, - "Web/HTML/Element/legend": { - "modified": "2019-03-23T22:23:27.067Z", + "Web/JavaScript/Reference/Global_Objects/Function/length": { + "modified": "2019-03-23T22:48:00.101Z", "contributors": [ - "Legioinvicta" + "llue" ] }, - "Web/HTML/Element/li": { - "modified": "2019-03-23T22:23:30.535Z", + "Web/JavaScript/Reference/Global_Objects/Function/name": { + "modified": "2019-03-23T22:47:57.251Z", "contributors": [ - "Legioinvicta" + "SphinxKnight", + "kdex", + "llue" ] }, - "Web/HTML/Element/link": { - "modified": "2019-03-23T22:23:31.095Z", + "Web/JavaScript/Reference/Global_Objects/Function/toSource": { + "modified": "2019-03-23T22:46:13.863Z", "contributors": [ - "Legioinvicta" + "teoli", + "llue" ] }, - "Web/HTML/Element/listing": { - "modified": "2019-03-23T22:23:31.930Z", + "Web/JavaScript/Reference/Global_Objects/Object": { + "modified": "2019-03-23T22:49:56.793Z", "contributors": [ - "Legioinvicta" + "enTropy", + "fscholz" ] }, - "Web/HTML/Element/main": { - "modified": "2019-03-23T22:23:29.013Z", + "Web/JavaScript/Reference/Global_Objects/Object/assign": { + "modified": "2019-05-19T17:20:08.284Z", "contributors": [ - "Legioinvicta" + "SphinxKnight", + "kdex", + "mariodev12", + "llue" ] }, - "Web/HTML/Element/map": { - "modified": "2019-03-23T22:23:28.443Z", + "Web/JavaScript/Reference/Global_Objects/Object/freeze": { + "modified": "2019-03-23T22:46:16.251Z", "contributors": [ - "Legioinvicta" + "enTropy" ] }, - "Web/HTML/Element/mark": { - "modified": "2019-03-23T22:23:29.469Z", + "Web/JavaScript/Reference/Global_Objects/Object/getPrototypeOf": { + "modified": "2019-03-23T22:46:10.277Z", "contributors": [ - "Legioinvicta" + "enTropy" ] }, - "Web/HTML/Element/marquee": { - "modified": "2019-03-23T22:23:25.351Z", + "Web/JavaScript/Reference/Global_Objects/Object/isExtensible": { + "modified": "2019-03-23T22:46:14.358Z", "contributors": [ - "Legioinvicta" + "enTropy" ] }, - "Web/HTML/Element/menu": { - "modified": "2019-03-23T22:43:53.972Z", + "Web/JavaScript/Reference/Global_Objects/Object/isFrozen": { + "modified": "2019-03-23T22:46:09.931Z", + "contributors": [ + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Object/keys": { + "modified": "2019-03-23T22:46:06.321Z", + "contributors": [ + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/WeakMap": { + "modified": "2020-10-06T14:35:54.632Z", "contributors": [ + "oleksandrstarov", + "SphinxKnight", + "enTropy", + "llue", + "LPGhatguy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/WeakMap/clear": { + "modified": "2019-03-23T22:44:13.701Z", + "contributors": [ + "teoli", "llue" ] }, - "Web/HTML/Element/menuitem": { - "modified": "2019-03-23T22:23:24.576Z", + "Web/JavaScript/Reference/Global_Objects/WeakMap/delete": { + "modified": "2019-03-23T22:44:05.122Z", + "contributors": [ + "SphinxKnight", + "llue" + ] + }, + "Web/JavaScript/Reference/Global_Objects/WeakMap/get": { + "modified": "2019-03-23T22:43:55.576Z", + "contributors": [ + "SphinxKnight", + "llue" + ] + }, + "Web/JavaScript/Reference/Global_Objects/WeakMap/has": { + "modified": "2019-03-18T21:16:35.783Z", + "contributors": [ + "SphinxKnight", + "llue" + ] + }, + "Web/JavaScript/Reference/Global_Objects/WeakMap/set": { + "modified": "2019-03-23T22:43:56.028Z", + "contributors": [ + "SphinxKnight", + "llue" + ] + }, + "Web/JavaScript/Reference/Global_Objects/WeakSet": { + "modified": "2019-03-23T22:44:01.226Z", + "contributors": [ + "SphinxKnight", + "llue", + "fscholz" + ] + }, + "Web/JavaScript/Reference/Global_Objects/WeakSet/add": { + "modified": "2019-03-23T22:44:07.820Z", + "contributors": [ + "SphinxKnight", + "llue" + ] + }, + "Web/JavaScript/Reference/Global_Objects/WeakSet/clear": { + "modified": "2019-03-23T22:44:09.553Z", + "contributors": [ + "teoli", + "llue" + ] + }, + "Web/JavaScript/Reference/Global_Objects/WeakSet/delete": { + "modified": "2019-03-23T22:44:09.377Z", "contributors": [ - "Legioinvicta" + "SphinxKnight", + "llue" ] }, - "Web/HTML/Element/meta": { - "modified": "2019-03-23T22:23:14.832Z", + "Web/JavaScript/Reference/Global_Objects/WeakSet/has": { + "modified": "2019-03-23T22:44:07.338Z", "contributors": [ - "Legioinvicta" + "SphinxKnight", + "llue" ] }, - "Web/HTML/Element/meter": { - "modified": "2019-03-23T22:23:09.097Z", + "Web/Reference": { + "modified": "2019-03-23T22:22:23.982Z", "contributors": [ - "Legioinvicta" + "Legioinvicta", + "andrealeone" ] }, - "Web/HTML/Element/multicol": { - "modified": "2019-03-23T22:23:18.874Z", + "Web/Reference/API": { + "modified": "2019-03-23T22:22:24.413Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/nav": { - "modified": "2019-03-23T22:48:17.923Z", + "Web/Tutorials": { + "modified": "2019-03-23T22:22:12.721Z", "contributors": [ - "wbamberg", - "llue" + "Legioinvicta" ] }, - "Web/HTML/Element/nextid": { - "modified": "2019-03-23T22:22:37.005Z", + "Web/XSLT": { + "modified": "2019-03-23T23:40:59.738Z", "contributors": [ - "Legioinvicta" + "ExE-Boss", + "teoli", + "Oriol" ] }, - "Web/HTML/Element/nobr": { - "modified": "2019-03-23T22:23:17.356Z", + "Mozilla/Firefox/Releases/2": { + "modified": "2019-01-16T14:39:26.842Z", "contributors": [ - "Legioinvicta" + "fscholz", + "Toniher" ] }, - "Web/HTML/Element/noembed": { - "modified": "2019-03-23T22:23:16.262Z", + "Glossary/IP_Address": { + "modified": "2019-03-23T22:19:57.768Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/noframes": { - "modified": "2019-03-23T22:23:17.870Z", + "Glossary/Scope": { + "modified": "2019-03-23T22:20:06.122Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/noscript": { - "modified": "2019-03-23T22:23:12.362Z", + "Glossary/Attribute": { + "modified": "2019-03-23T22:19:53.370Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/object": { - "modified": "2019-03-23T22:23:08.187Z", + "Glossary/Character": { + "modified": "2019-03-23T22:19:53.728Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/ol": { - "modified": "2019-03-23T22:23:11.431Z", + "Glossary/character_encoding": { + "modified": "2019-03-23T22:19:50.642Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/optgroup": { - "modified": "2019-03-23T22:23:08.674Z", + "Glossary/Tag": { + "modified": "2019-03-23T22:19:57.140Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/option": { - "modified": "2019-03-23T22:23:17.744Z", + "Glossary/Function": { + "modified": "2019-03-23T22:19:50.324Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/output": { - "modified": "2019-03-23T22:23:07.934Z", + "Glossary/Method": { + "modified": "2019-03-23T22:20:05.381Z", "contributors": [ - "wbamberg", "Legioinvicta" ] }, - "Web/HTML/Element/p": { - "modified": "2019-03-23T22:22:56.526Z", + "Glossary/Browser": { + "modified": "2019-03-23T22:19:58.039Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/param": { - "modified": "2019-03-23T22:23:02.418Z", + "Glossary/Object": { + "modified": "2019-03-23T22:19:50.943Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/picture": { - "modified": "2019-03-23T22:23:01.844Z", + "Glossary/Primitive": { + "modified": "2019-03-23T22:20:08.496Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/plaintext": { - "modified": "2019-03-23T22:22:59.391Z", + "Glossary/property": { + "modified": "2019-03-23T22:20:10.616Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/pre": { - "modified": "2019-03-23T22:23:02.683Z", + "Glossary/Object_reference": { + "modified": "2019-03-23T22:20:02.599Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/progress": { - "modified": "2019-03-23T22:22:54.749Z", + "Glossary/Server": { + "modified": "2019-03-23T22:19:48.520Z", "contributors": [ - "wbamberg", "Legioinvicta" ] }, - "Web/HTML/Element/q": { - "modified": "2020-10-15T21:50:56.392Z", + "Glossary/Value": { + "modified": "2019-03-23T22:20:04.109Z", "contributors": [ - "fscholz", "Legioinvicta" ] }, - "Web/HTML/Element/rp": { - "modified": "2019-03-23T22:22:55.170Z", + "Learn/Accessibility/What_is_accessibility": { + "modified": "2020-09-28T14:42:22.680Z", "contributors": [ - "Legioinvicta" + "PalomaBanyuls", + "editorUOC" ] }, - "Web/HTML/Element/rt": { - "modified": "2019-03-23T22:22:59.953Z", + "Learn/CSS/Building_blocks/Cascade_and_inheritance": { + "modified": "2020-09-06T11:07:02.729Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/rtc": { - "modified": "2019-03-23T22:22:57.513Z", + "Learn/CSS/Building_blocks/Debugging_CSS": { + "modified": "2020-10-15T22:27:14.006Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/ruby": { - "modified": "2019-03-23T22:48:18.101Z", + "Learn/CSS/Building_blocks/Overflowing_content": { + "modified": "2020-09-07T07:28:16.584Z", "contributors": [ - "llue" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/s": { - "modified": "2019-03-23T22:23:02.208Z", + "Learn/CSS/Building_blocks/Sizing_items_in_CSS": { + "modified": "2020-07-16T22:29:20.212Z", "contributors": [ - "Legioinvicta" + "editorUOC" ] }, - "Web/HTML/Element/samp": { - "modified": "2019-03-23T22:22:59.763Z", + "Learn/CSS/Building_blocks/Backgrounds_and_borders": { + "modified": "2020-09-06T17:11:06.366Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/script": { - "modified": "2019-03-23T22:22:58.125Z", + "Learn/CSS/Building_blocks/Selectors/Combinators": { + "modified": "2020-09-06T14:03:41.366Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/section": { - "modified": "2019-03-23T22:23:02.047Z", + "Learn/CSS/Building_blocks/Selectors": { + "modified": "2020-09-06T12:38:01.863Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/select": { - "modified": "2019-03-23T22:22:53.707Z", + "Learn/CSS/Building_blocks/Selectors/Pseudo-classes_and_pseudo-elements": { + "modified": "2020-09-06T13:50:00.436Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/small": { - "modified": "2019-03-23T22:22:57.046Z", + "Learn/CSS/Building_blocks/Selectors/Attribute_selectors": { + "modified": "2020-09-06T13:31:42.768Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/source": { - "modified": "2019-03-23T22:23:01.454Z", + "Learn/CSS/Building_blocks/Selectors/Type_Class_and_ID_Selectors": { + "modified": "2020-09-06T13:14:37.617Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/spacer": { - "modified": "2019-03-23T22:23:01.649Z", + "Learn/CSS/Building_blocks/Values_and_units": { + "modified": "2020-09-07T09:12:07.786Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/span": { - "modified": "2019-03-23T22:22:57.324Z", + "Learn/CSS/Building_blocks/A_cool_looking_box": { + "modified": "2020-07-16T22:28:26.308Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/strike": { - "modified": "2019-03-23T22:22:53.130Z", + "Learn/CSS/Building_blocks/Creating_fancy_letterheaded_paper": { + "modified": "2020-07-16T22:28:24.307Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/strong": { - "modified": "2019-03-23T22:23:00.673Z", + "Learn/CSS/CSS_layout/Responsive_Design": { + "modified": "2020-09-17T06:03:03.884Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/style": { - "modified": "2019-03-23T22:22:54.521Z", + "Learn/CSS/CSS_layout/Practical_positioning_examples": { + "modified": "2020-07-16T22:26:47.642Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/sub": { - "modified": "2019-03-23T22:23:00.459Z", + "Learn/CSS/CSS_layout/Flexbox": { + "modified": "2020-09-15T14:11:31.873Z", "contributors": [ + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/HTML/Element/summary": { - "modified": "2019-03-23T22:22:43.871Z", + "Learn/CSS/CSS_layout/Floats": { + "modified": "2020-10-16T13:31:05.489Z", "contributors": [ + "zuruckzugehen", "Legioinvicta" ] }, - "Web/HTML/Element/sup": { - "modified": "2019-03-23T22:22:44.577Z", + "Learn/CSS/CSS_layout/Normal_Flow": { + "modified": "2020-07-16T22:27:20.382Z", "contributors": [ - "Legioinvicta" + "editorUOC" ] }, - "Web/HTML/Element/table": { - "modified": "2019-03-23T22:22:37.782Z", + "Learn/CSS/CSS_layout/Grids": { + "modified": "2020-09-15T17:42:28.654Z", "contributors": [ + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/HTML/Element/tbody": { - "modified": "2019-03-23T22:22:38.557Z", + "Learn/CSS/CSS_layout": { + "modified": "2020-07-16T22:26:29.321Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/td": { - "modified": "2019-03-23T22:22:36.618Z", + "Learn/CSS/CSS_layout/Introduction": { + "modified": "2020-09-15T13:10:38.905Z", "contributors": [ + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/HTML/Element/template": { - "modified": "2019-03-23T22:22:36.185Z", + "Learn/CSS/CSS_layout/Positioning": { + "modified": "2020-07-16T22:26:41.807Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/textarea": { - "modified": "2020-10-15T21:50:57.306Z", + "Learn/CSS/CSS_layout/Supporting_Older_Browsers": { + "modified": "2020-07-16T22:27:17.065Z", "contributors": [ - "fscholz", - "Legioinvicta" + "editorUOC" ] }, - "Web/HTML/Element/tfoot": { - "modified": "2019-03-23T22:22:35.229Z", + "Learn/CSS/Styling_text/Typesetting_a_homepage": { + "modified": "2020-07-16T22:26:25.942Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/th": { - "modified": "2019-03-23T22:22:39.656Z", + "Learn/CSS/Styling_text/Styling_links": { + "modified": "2020-09-18T08:18:22.715Z", "contributors": [ + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/HTML/Element/thead": { - "modified": "2020-10-15T21:50:57.690Z", + "Learn/CSS/Styling_text/Web_fonts": { + "modified": "2020-09-01T07:12:36.767Z", "contributors": [ - "fscholz", + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/HTML/Element/time": { - "modified": "2019-03-23T22:22:41.833Z", + "Learn/CSS/Styling_text": { + "modified": "2020-07-16T22:25:57.417Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/tr": { - "modified": "2019-03-23T22:22:38.222Z", + "Learn/CSS/Styling_text/Styling_lists": { + "modified": "2020-09-18T08:12:42.705Z", "contributors": [ + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/HTML/Element/track": { - "modified": "2019-03-23T22:22:43.012Z", + "Learn/CSS/Styling_text/Fundamentals": { + "modified": "2020-09-18T07:56:58.583Z", "contributors": [ + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/HTML/Element/tt": { - "modified": "2019-03-23T22:22:39.819Z", + "Learn/CSS/First_steps/Getting_started": { + "modified": "2020-08-31T14:05:15.542Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/u": { - "modified": "2019-03-23T22:22:42.717Z", + "Learn/CSS/First_steps/How_CSS_is_structured": { + "modified": "2020-09-18T07:37:19.056Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/ul": { - "modified": "2019-03-23T22:22:42.253Z", + "Learn/CSS/First_steps/How_CSS_works": { + "modified": "2020-09-18T07:45:35.450Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/var": { - "modified": "2019-03-23T22:22:43.305Z", + "Learn/CSS/First_steps/What_is_CSS": { + "modified": "2020-10-15T22:26:48.511Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Element/video": { - "modified": "2019-03-23T22:22:39.252Z", + "Learn/CSS/Building_blocks/Fundamental_CSS_comprehension": { + "modified": "2020-07-16T22:28:11.319Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/wbr": { - "modified": "2019-03-23T22:22:41.607Z", + "Learn/Getting_started_with_the_web/How_the_Web_works": { + "modified": "2020-07-16T22:33:59.006Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Element/xmp": { - "modified": "2019-03-23T22:22:35.712Z", + "Learn/Getting_started_with_the_web/CSS_basics": { + "modified": "2020-07-16T22:34:56.090Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Elements_en_línia": { - "modified": "2019-03-23T22:19:22.875Z", + "Learn/Getting_started_with_the_web/Installing_basic_software": { + "modified": "2020-07-16T22:34:06.205Z", "contributors": [ + "editorUOC", + "nuriarai", "Legioinvicta" ] }, - "Web/HTML/Global_attributes": { - "modified": "2019-03-23T23:02:43.690Z", + "Learn/Getting_started_with_the_web/JavaScript_basics": { + "modified": "2020-07-16T22:35:08.325Z", "contributors": [ - "teoli" + "Legioinvicta" ] }, - "Web/HTML/Global_attributes/accesskey": { - "modified": "2019-03-23T22:22:38.770Z", + "Learn/Getting_started_with_the_web/Publishing_your_website": { + "modified": "2020-07-16T22:34:23.226Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Global_attributes/class": { - "modified": "2019-03-23T22:22:35.405Z", + "Learn/Getting_started_with_the_web/What_will_your_website_look_like": { + "modified": "2020-07-16T22:34:14.054Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Global_attributes/contenteditable": { - "modified": "2019-03-23T22:22:43.650Z", + "Learn/Getting_started_with_the_web/Dealing_with_files": { + "modified": "2020-07-16T22:34:31.776Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Global_attributes/contextmenu": { - "modified": "2020-10-15T21:50:47.437Z", + "Learn/Forms/How_to_structure_a_web_form": { + "modified": "2020-09-18T11:10:39.794Z", "contributors": [ - "SphinxKnight", - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Global_attributes/data-*": { - "modified": "2019-03-23T22:22:26.612Z", + "Learn/Forms/Basic_native_form_controls": { + "modified": "2020-09-15T07:44:08.730Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Global_attributes/dir": { - "modified": "2019-03-23T22:22:29.249Z", + "Learn/Forms/Your_first_form": { + "modified": "2020-09-18T11:08:30.671Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Global_attributes/draggable": { - "modified": "2019-03-23T22:22:20.909Z", + "Learn/Forms": { + "modified": "2020-07-16T22:20:53.997Z", "contributors": [ + "chrisdavidmills", "Legioinvicta" ] }, - "Web/HTML/Global_attributes/dropzone": { - "modified": "2019-03-23T22:22:19.145Z", + "Learn/Forms/Form_validation": { + "modified": "2020-09-18T11:25:33.611Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC" ] }, - "Web/HTML/Global_attributes/hidden": { - "modified": "2019-03-23T22:22:17.448Z", + "Learn/HTML/Introduction_to_HTML/Creating_hyperlinks": { + "modified": "2020-08-31T10:00:44.793Z", "contributors": [ + "UOCccorcoles", + "editorUOC", + "casabona1983", "Legioinvicta" ] }, - "Web/HTML/Global_attributes/id": { - "modified": "2019-03-23T22:22:26.785Z", + "Learn/HTML/Introduction_to_HTML/Debugging_HTML": { + "modified": "2020-08-31T12:21:35.167Z", "contributors": [ + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/HTML/Global_attributes/itemid": { - "modified": "2019-03-23T22:22:24.180Z", + "Learn/HTML/Introduction_to_HTML/Document_and_website_structure": { + "modified": "2020-08-31T11:17:14.859Z", "contributors": [ + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/HTML/Global_attributes/itemprop": { - "modified": "2019-03-23T22:22:18.837Z", + "Learn/HTML/Introduction_to_HTML/Structuring_a_page_of_content": { + "modified": "2020-07-16T22:24:17.607Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Global_attributes/itemref": { - "modified": "2019-03-23T22:22:25.523Z", + "Learn/HTML/Introduction_to_HTML/HTML_text_fundamentals": { + "modified": "2020-09-18T05:51:57.560Z", "contributors": [ + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/HTML/Global_attributes/itemscope": { - "modified": "2019-03-23T22:22:27.169Z", + "Learn/HTML/Introduction_to_HTML/Advanced_text_formatting": { + "modified": "2020-09-18T07:30:27.211Z", "contributors": [ + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/HTML/Global_attributes/itemtype": { - "modified": "2019-03-23T22:22:24.967Z", + "Learn/HTML/Introduction_to_HTML/Getting_started": { + "modified": "2020-09-18T05:39:40.192Z", "contributors": [ - "Legioinvicta" + "UOCccorcoles", + "editorUOC", + "casabona1983", + "nuriarai", + "Legioinvicta", + "lawer" ] }, - "Web/HTML/Global_attributes/lang": { - "modified": "2019-03-23T23:02:45.670Z", + "Learn/HTML/Introduction_to_HTML": { + "modified": "2020-07-16T22:22:45.604Z", "contributors": [ - "llue" + "Legioinvicta", + "ccorcoles" ] }, - "Web/HTML/Global_attributes/spellcheck": { - "modified": "2019-03-23T22:22:25.809Z", + "Learn/HTML/Introduction_to_HTML/Marking_up_a_letter": { + "modified": "2020-07-16T22:23:11.111Z", "contributors": [ + "laiagabe", "Legioinvicta" ] }, - "Web/HTML/Global_attributes/style": { - "modified": "2019-03-23T22:44:10.989Z", + "Learn/HTML/Introduction_to_HTML/The_head_metadata_in_HTML": { + "modified": "2020-08-31T06:21:25.281Z", "contributors": [ - "llue" + "UOCccorcoles", + "editorUOC", + "Legioinvicta" ] }, - "Web/HTML/Global_attributes/tabindex": { - "modified": "2019-03-23T22:22:21.110Z", + "Learn/HTML/Multimedia_and_embedding/Adding_vector_graphics_to_the_Web": { + "modified": "2020-07-16T22:24:39.628Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Global_attributes/title": { - "modified": "2019-03-23T22:22:28.134Z", + "Learn/HTML/Multimedia_and_embedding/Video_and_audio_content": { + "modified": "2020-07-16T22:24:50.962Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Global_attributes/translate": { - "modified": "2019-03-23T22:22:25.290Z", + "Learn/HTML/Multimedia_and_embedding/Other_embedding_technologies": { + "modified": "2020-07-16T22:25:00.150Z", "contributors": [ "Legioinvicta" ] }, - "Web/HTML/Optimizing_your_pages_for_speculative_parsing": { - "modified": "2019-03-23T22:24:14.691Z", + "Learn/HTML/Multimedia_and_embedding/Images_in_HTML": { + "modified": "2020-09-01T07:45:13.148Z", "contributors": [ + "UOCccorcoles", + "editorUOC", "Legioinvicta" ] }, - "Web/JavaScript": { - "modified": "2020-03-12T19:38:14.951Z", + "Learn/HTML/Multimedia_and_embedding/Responsive_images": { + "modified": "2020-07-16T22:24:32.326Z", "contributors": [ - "SphinxKnight", - "fv3rdugo", - "enTropy", - "teoli", - "allergic" + "rcomellas", + "Legioinvicta" ] }, - "Web/JavaScript/A_re-introduction_to_JavaScript": { - "modified": "2020-03-12T19:41:33.097Z", + "Learn/HTML/Multimedia_and_embedding": { + "modified": "2020-07-16T22:24:24.359Z", "contributors": [ - "pere", - "teoli", - "joanprimpratrec2" + "Legioinvicta" ] }, - "Web/JavaScript/Data_structures": { - "modified": "2020-07-27T06:57:51.432Z", + "Learn/HTML/Multimedia_and_embedding/Mozilla_splash_page": { + "modified": "2020-07-16T22:25:05.830Z", "contributors": [ - "joanpardo", - "enTropy" + "Legioinvicta" ] }, - "Web/JavaScript/Enumerability_and_ownership_of_properties": { - "modified": "2020-03-12T19:40:53.838Z", + "Learn/HTML/Tables/Structuring_planet_data": { + "modified": "2020-07-16T22:25:28.884Z", "contributors": [ - "enTropy" + "Legioinvicta" ] }, - "Web/JavaScript/EventLoop": { - "modified": "2020-03-12T19:40:40.928Z", + "Learn/HTML/Tables/Basics": { + "modified": "2020-09-09T11:52:32.829Z", "contributors": [ - "enTropy" + "UOCccorcoles", + "editorUOC", + "Legioinvicta" ] }, - "Web/JavaScript/Guide": { - "modified": "2020-03-12T19:40:37.449Z", + "Learn/HTML/Tables": { + "modified": "2020-07-16T22:25:10.298Z", "contributors": [ - "enTropy", - "fscholz" + "Legioinvicta" ] }, - "Web/JavaScript/Guide/Details_of_the_Object_Model": { - "modified": "2020-03-12T19:40:52.288Z", + "Learn/HTML/Tables/Advanced": { + "modified": "2020-09-09T12:02:19.448Z", "contributors": [ - "wbamberg", - "SphinxKnight", - "fscholz", - "enTropy" + "UOCccorcoles", + "editorUOC", + "Legioinvicta" ] }, - "Web/JavaScript/Guide/Expressions_i_Operadors": { - "modified": "2020-03-12T19:40:39.289Z", + "MDN/At_ten": { + "modified": "2019-03-23T22:45:53.203Z", "contributors": [ - "wbamberg", - "fscholz", - "enTropy", "llue" ] }, - "Web/JavaScript/Guide/Functions": { - "modified": "2020-03-12T19:40:36.377Z", + "orphaned/MDN/Community": { + "modified": "2019-09-11T08:03:49.400Z", "contributors": [ + "SphinxKnight", "wbamberg", - "fscholz", - "enTropy", - "llue" - ] - }, - "Web/JavaScript/Guide/Introducció": { - "modified": "2020-07-27T11:48:12.566Z", - "contributors": [ - "joanpardo", - "mariodev12", - "enTropy" + "Legioinvicta" ] }, - "Web/JavaScript/Inheritance_and_the_prototype_chain": { - "modified": "2020-03-12T19:42:16.312Z", + "orphaned/MDN/Contribute/Howto/Create_an_MDN_account": { + "modified": "2019-03-18T21:20:46.294Z", "contributors": [ - "ibesora", - "enTropy" + "jordibrus" ] }, - "Web/JavaScript/Introducció_al_Javascript_orientat_a_Objectes": { - "modified": "2020-03-12T19:40:42.090Z", + "MDN/Contribute/Processes": { + "modified": "2019-01-17T01:56:28.494Z", "contributors": [ - "llue" + "wbamberg", + "Legioinvicta" ] }, - "Web/JavaScript/Language_Resources": { - "modified": "2020-03-12T19:40:36.891Z", + "MDN/Yari": { + "modified": "2019-09-09T15:51:48.851Z", "contributors": [ - "enTropy" + "SphinxKnight", + "wbamberg", + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Errors": { - "modified": "2020-03-12T19:48:06.943Z", + "Web/Guide/Mobile/A_hybrid_approach": { + "modified": "2019-03-23T23:33:18.345Z", "contributors": [ - "Sheppy" + "trevorh" ] }, - "Web/JavaScript/Reference/Errors/Nomes-Lectura": { - "modified": "2020-03-12T19:48:06.623Z", + "Web/Guide/Mobile/Mobile-friendliness": { + "modified": "2019-03-23T23:33:21.925Z", "contributors": [ - "vilherda" + "caos30" ] }, - "Web/JavaScript/Reference/Functions": { - "modified": "2020-03-12T19:42:52.475Z", + "Web/Guide/Mobile/Separate_sites": { + "modified": "2019-03-23T23:33:19.296Z", "contributors": [ - "fscholz" + "trevorh" ] }, - "Web/JavaScript/Reference/Functions/arguments": { - "modified": "2020-03-12T19:42:37.661Z", + "Web/API/Canvas_API/Tutorial/Advanced_animations": { + "modified": "2019-03-23T22:03:52.604Z", "contributors": [ - "mones-cse" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Functions/arguments/length": { - "modified": "2020-03-12T19:42:34.789Z", + "Web/API/Canvas_API/Tutorial/Basic_animations": { + "modified": "2019-03-23T22:03:56.826Z", "contributors": [ - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Functions/get": { - "modified": "2020-03-12T19:43:33.264Z", + "Web/API/Canvas_API/Tutorial/Applying_styles_and_colors": { + "modified": "2019-03-23T22:04:05.578Z", "contributors": [ - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Functions/parameters_rest": { - "modified": "2020-10-15T21:58:10.585Z", + "Web/API/Canvas_API/Tutorial/Compositing": { + "modified": "2019-03-23T22:04:02.955Z", "contributors": [ - "jordilondoner" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/DataView": { - "modified": "2019-03-23T22:46:12.658Z", + "Web/API/Canvas_API/Tutorial/Drawing_text": { + "modified": "2019-03-23T22:04:09.548Z", "contributors": [ - "Sebastianz" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/DataView/buffer": { - "modified": "2019-03-23T22:44:07.496Z", + "Web/API/Canvas_API/Tutorial/Pixel_manipulation_with_canvas": { + "modified": "2020-10-22T19:57:12.300Z", "contributors": [ - "llue" + "escattone", + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/DataView/getFloat32": { - "modified": "2019-03-23T22:44:02.895Z", + "Web/API/Canvas_API/Tutorial/Transformations": { + "modified": "2019-03-23T22:03:59.945Z", "contributors": [ - "enTropy", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/DataView/prototype": { - "modified": "2019-03-23T22:46:15.196Z", + "Web/API/Canvas_API/Tutorial/Basic_usage": { + "modified": "2019-03-23T22:04:22.078Z", "contributors": [ - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/EvalError": { - "modified": "2019-03-23T22:47:17.840Z", + "Web/CSS/CSS_Box_Model/Mastering_margin_collapsing": { + "modified": "2019-03-18T21:17:29.185Z", "contributors": [ - "fscholz" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/EvalError/prototype": { - "modified": "2019-03-23T22:47:27.467Z", + "Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model": { + "modified": "2019-03-18T21:15:28.600Z", "contributors": [ - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Function": { - "modified": "2019-03-23T22:47:58.251Z", + "Web/CSS/Reference": { + "modified": "2019-03-23T22:21:55.917Z", "contributors": [ - "fscholz" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Function/arguments": { - "modified": "2019-03-23T22:48:02.332Z", + "Web/CSS/CSS_Selectors": { + "modified": "2019-07-10T09:40:26.803Z", "contributors": [ - "llue" + "gavinsykes", + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Function/caller": { - "modified": "2019-03-18T21:15:51.563Z", + "Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors": { + "modified": "2019-03-23T22:21:45.619Z", "contributors": [ - "teoli", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Function/length": { - "modified": "2019-03-23T22:48:00.101Z", + "Web/CSS/Attribute_selectors": { + "modified": "2019-03-23T22:21:47.586Z", "contributors": [ - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Function/name": { - "modified": "2019-03-23T22:47:57.251Z", + "Web/CSS/Class_selectors": { + "modified": "2019-03-23T22:21:40.826Z", "contributors": [ - "SphinxKnight", - "kdex", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Function/toSource": { - "modified": "2019-03-23T22:46:13.863Z", + "Web/CSS/Descendant_combinator": { + "modified": "2019-03-23T22:21:41.801Z", "contributors": [ - "teoli", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Object": { - "modified": "2019-03-23T22:49:56.793Z", + "Web/CSS/Child_combinator": { + "modified": "2019-03-23T22:21:37.309Z", "contributors": [ - "enTropy", - "fscholz" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Object/assign": { - "modified": "2019-05-19T17:20:08.284Z", + "Web/CSS/Adjacent_sibling_combinator": { + "modified": "2019-03-23T22:21:40.662Z", "contributors": [ - "SphinxKnight", - "kdex", - "mariodev12", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Object/freeze": { - "modified": "2019-03-23T22:46:16.251Z", + "Web/CSS/Type_selectors": { + "modified": "2019-03-23T22:21:49.346Z", "contributors": [ - "enTropy" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Object/getPrototypeOf": { - "modified": "2019-03-23T22:46:10.277Z", + "Web/CSS/General_sibling_combinator": { + "modified": "2019-03-23T22:21:39.817Z", "contributors": [ - "enTropy" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Object/isExtensible": { - "modified": "2019-03-23T22:46:14.358Z", + "Web/CSS/ID_selectors": { + "modified": "2019-03-18T21:15:31.059Z", "contributors": [ - "enTropy" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Object/isFrozen": { - "modified": "2019-03-23T22:46:09.931Z", + "Web/CSS/Universal_selectors": { + "modified": "2019-03-23T22:21:38.063Z", "contributors": [ - "enTropy" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Object/keys": { - "modified": "2019-03-23T22:46:06.321Z", + "Web/CSS/Syntax": { + "modified": "2019-03-23T22:05:30.508Z", "contributors": [ - "enTropy" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/Object/prototype": { - "modified": "2019-03-23T22:48:18.297Z", + "Web/Guide/AJAX/Getting_Started": { + "modified": "2019-01-16T16:22:29.202Z", "contributors": [ - "enTropy" + "chrisdavidmills", + "Toniher" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakMap": { - "modified": "2020-10-06T14:35:54.632Z", + "Web/Progressive_web_apps/Responsive/Media_types": { + "modified": "2019-03-23T22:20:43.883Z", "contributors": [ - "oleksandrstarov", - "SphinxKnight", - "enTropy", - "llue", - "LPGhatguy" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakMap/clear": { - "modified": "2019-03-23T22:44:13.701Z", + "Web/SVG/Tutorial/SVG_and_CSS": { + "modified": "2019-03-23T22:20:34.731Z", "contributors": [ - "teoli", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakMap/delete": { - "modified": "2019-03-23T22:44:05.122Z", + "Web/Guide/Graphics": { + "modified": "2019-03-23T22:04:22.823Z", "contributors": [ - "SphinxKnight", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakMap/get": { - "modified": "2019-03-23T22:43:55.576Z", + "Learn/HTML/Howto/Author_fast-loading_HTML_pages": { + "modified": "2020-07-16T22:22:32.019Z", "contributors": [ - "SphinxKnight", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakMap/has": { - "modified": "2019-03-18T21:16:35.783Z", + "Web/Guide/HTML/Using_HTML_sections_and_outlines": { + "modified": "2019-03-23T22:19:14.112Z", "contributors": [ - "SphinxKnight", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakMap/prototype": { - "modified": "2019-03-23T22:44:02.612Z", + "orphaned/Web/HTML/Element/command": { + "modified": "2019-03-23T22:24:15.300Z", "contributors": [ - "SphinxKnight", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakMap/set": { - "modified": "2019-03-23T22:43:56.028Z", + "orphaned/Web/HTML/Element/element": { + "modified": "2019-03-23T22:48:09.171Z", "contributors": [ - "SphinxKnight", "llue" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakSet": { - "modified": "2019-03-23T22:44:01.226Z", + "Web/HTML/Inline_elements": { + "modified": "2019-03-23T22:19:22.875Z", "contributors": [ - "SphinxKnight", - "llue", - "fscholz" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakSet/add": { - "modified": "2019-03-23T22:44:07.820Z", + "orphaned/Web/HTML/Global_attributes/dropzone": { + "modified": "2019-03-23T22:22:19.145Z", "contributors": [ - "SphinxKnight", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakSet/clear": { - "modified": "2019-03-23T22:44:09.553Z", + "Glossary/speculative_parsing": { + "modified": "2019-03-23T22:24:14.691Z", "contributors": [ - "teoli", - "llue" + "Legioinvicta" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakSet/delete": { - "modified": "2019-03-23T22:44:09.377Z", + "Web/JavaScript/Guide/Expressions_and_Operators": { + "modified": "2020-03-12T19:40:39.289Z", "contributors": [ - "SphinxKnight", + "wbamberg", + "fscholz", + "enTropy", "llue" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakSet/has": { - "modified": "2019-03-23T22:44:07.338Z", + "Web/JavaScript/Guide/Introduction": { + "modified": "2020-07-27T11:48:12.566Z", "contributors": [ - "SphinxKnight", - "llue" + "joanpardo", + "mariodev12", + "enTropy" ] }, - "Web/JavaScript/Reference/Global_Objects/WeakSet/prototype": { - "modified": "2019-03-23T22:44:06.443Z", + "Web/JavaScript/About_JavaScript": { + "modified": "2020-07-27T11:53:21.427Z", "contributors": [ - "SphinxKnight", - "llue" + "joanpardo", + "enTropy" ] }, - "Web/JavaScript/Referencia": { - "modified": "2020-03-12T19:38:14.018Z", + "Web/JavaScript/Reference/Errors/Read-only": { + "modified": "2020-03-12T19:48:06.623Z", "contributors": [ - "enTropy", - "teoli", - "JordiGuilleumes" + "vilherda" ] }, - "Web/JavaScript/Referencia/Classes": { - "modified": "2020-10-15T21:34:20.230Z", + "Web/JavaScript/Reference/Functions/rest_parameters": { + "modified": "2020-10-15T21:58:10.585Z", "contributors": [ - "SphinxKnight", - "kdex", - "fscholz" + "jordilondoner" ] }, - "Web/JavaScript/Referencia/Classes/constructor": { + "Web/JavaScript/Reference/Classes/constructor": { "modified": "2020-03-12T19:40:58.003Z", "contributors": [ "SphinxKnight", @@ -3316,7 +3218,15 @@ "llue" ] }, - "Web/JavaScript/Referencia/Classes/static": { + "Web/JavaScript/Reference/Classes": { + "modified": "2020-10-15T21:34:20.230Z", + "contributors": [ + "SphinxKnight", + "kdex", + "fscholz" + ] + }, + "Web/JavaScript/Reference/Classes/static": { "modified": "2020-03-12T19:41:02.767Z", "contributors": [ "SphinxKnight", @@ -3324,47 +3234,34 @@ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals": { - "modified": "2020-03-12T19:40:38.690Z", + "Web/JavaScript/Reference": { + "modified": "2020-03-12T19:38:14.018Z", "contributors": [ - "teoli", "enTropy", - "Sheppy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Array": { - "modified": "2019-03-23T22:47:17.387Z", - "contributors": [ - "wbamberg", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Array/Reduce": { - "modified": "2019-03-23T22:44:04.496Z", - "contributors": [ - "enTropy" + "teoli", + "JordiGuilleumes" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/entries": { + "Web/JavaScript/Reference/Global_Objects/Array/entries": { "modified": "2019-03-23T22:36:05.123Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/every": { + "Web/JavaScript/Reference/Global_Objects/Array/every": { "modified": "2019-03-23T22:37:52.531Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/fill": { + "Web/JavaScript/Reference/Global_Objects/Array/fill": { "modified": "2019-03-23T22:44:31.779Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/filter": { + "Web/JavaScript/Reference/Global_Objects/Array/filter": { "modified": "2019-03-23T22:41:52.655Z", "contributors": [ "adriaroms", @@ -3372,67 +3269,74 @@ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/find": { + "Web/JavaScript/Reference/Global_Objects/Array/find": { "modified": "2019-03-23T22:36:11.720Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/findIndex": { + "Web/JavaScript/Reference/Global_Objects/Array/findIndex": { "modified": "2019-03-23T22:36:14.897Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/forEach": { + "Web/JavaScript/Reference/Global_Objects/Array/forEach": { "modified": "2019-03-23T22:44:26.853Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/includes": { + "Web/JavaScript/Reference/Global_Objects/Array/includes": { "modified": "2019-03-23T22:36:01.831Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/indexOf": { + "Web/JavaScript/Reference/Global_Objects/Array": { + "modified": "2019-03-23T22:47:17.387Z", + "contributors": [ + "wbamberg", + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Array/indexOf": { "modified": "2019-03-23T22:35:51.226Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/isArray": { + "Web/JavaScript/Reference/Global_Objects/Array/isArray": { "modified": "2019-03-23T22:47:07.014Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/join": { + "Web/JavaScript/Reference/Global_Objects/Array/join": { "modified": "2019-07-09T09:44:57.379Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/keys": { + "Web/JavaScript/Reference/Global_Objects/Array/keys": { "modified": "2019-03-23T22:36:08.512Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/lastIndexOf": { + "Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf": { "modified": "2019-03-23T22:35:49.922Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/length": { + "Web/JavaScript/Reference/Global_Objects/Array/length": { "modified": "2019-03-23T22:44:31.474Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/map": { + "Web/JavaScript/Reference/Global_Objects/Array/map": { "modified": "2019-03-23T22:44:32.320Z", "contributors": [ "dsabalete", @@ -3440,66 +3344,72 @@ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/of": { + "Web/JavaScript/Reference/Global_Objects/Array/of": { "modified": "2019-03-23T22:47:09.344Z", "contributors": [ "SphinxKnight", "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/pop": { + "Web/JavaScript/Reference/Global_Objects/Array/pop": { "modified": "2019-03-23T22:44:33.207Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/prototype": { + "orphaned/Web/JavaScript/Reference/Global_Objects/Array/prototype": { "modified": "2019-03-23T22:45:55.785Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/push": { + "Web/JavaScript/Reference/Global_Objects/Array/push": { "modified": "2019-03-23T22:45:57.375Z", "contributors": [ "ibesora", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/reverse": { + "Web/JavaScript/Reference/Global_Objects/Array/Reduce": { + "modified": "2019-03-23T22:44:04.496Z", + "contributors": [ + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Array/reverse": { "modified": "2019-03-23T22:46:09.763Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/shift": { + "Web/JavaScript/Reference/Global_Objects/Array/shift": { "modified": "2019-03-23T22:36:00.243Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/slice": { + "Web/JavaScript/Reference/Global_Objects/Array/slice": { "modified": "2019-03-23T22:36:58.980Z", "contributors": [ "ibesora", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/some": { + "Web/JavaScript/Reference/Global_Objects/Array/some": { "modified": "2020-09-18T06:02:41.977Z", "contributors": [ "carmenansio", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Array/splice": { + "Web/JavaScript/Reference/Global_Objects/Array/splice": { "modified": "2019-07-28T12:07:49.969Z", "contributors": [ "ricardbarnes", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Boolean": { + "Web/JavaScript/Reference/Global_Objects/Boolean": { "modified": "2019-03-23T22:58:34.517Z", "contributors": [ "wbamberg", @@ -3507,660 +3417,583 @@ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Boolean/prototype": { - "modified": "2019-03-23T22:58:39.243Z", - "contributors": [ - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Boolean/toSource": { + "Web/JavaScript/Reference/Global_Objects/Boolean/toSource": { "modified": "2019-03-23T22:58:26.240Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Boolean/toString": { + "Web/JavaScript/Reference/Global_Objects/Boolean/toString": { "modified": "2019-03-23T22:58:27.726Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Boolean/valueOf": { + "Web/JavaScript/Reference/Global_Objects/Boolean/valueOf": { "modified": "2019-03-23T22:58:36.167Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date": { - "modified": "2019-03-23T22:58:49.026Z", - "contributors": [ - "wbamberg", - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Date/UTC": { - "modified": "2019-03-23T22:50:18.733Z", - "contributors": [ - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getDate": { + "Web/JavaScript/Reference/Global_Objects/Date/getDate": { "modified": "2019-03-23T22:48:57.472Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getDay": { + "Web/JavaScript/Reference/Global_Objects/Date/getDay": { "modified": "2019-03-23T22:57:51.802Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getFullYear": { + "Web/JavaScript/Reference/Global_Objects/Date/getFullYear": { "modified": "2019-03-23T22:57:49.306Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getHours": { + "Web/JavaScript/Reference/Global_Objects/Date/getHours": { "modified": "2019-03-23T22:57:45.516Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getMilliseconds": { + "Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds": { "modified": "2019-03-23T22:56:22.446Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getMinutes": { + "Web/JavaScript/Reference/Global_Objects/Date/getMinutes": { "modified": "2019-03-23T22:56:14.420Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getMonth": { + "Web/JavaScript/Reference/Global_Objects/Date/getMonth": { "modified": "2019-03-23T22:56:25.114Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getSeconds": { + "Web/JavaScript/Reference/Global_Objects/Date/getSeconds": { "modified": "2019-03-23T22:56:18.781Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getTime": { + "Web/JavaScript/Reference/Global_Objects/Date/getTime": { "modified": "2019-03-23T22:52:30.279Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getTimezoneOffset": { + "Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset": { "modified": "2019-03-23T22:52:28.361Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getUTCDate": { + "Web/JavaScript/Reference/Global_Objects/Date/getUTCDate": { "modified": "2019-03-23T22:52:26.697Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getUTCDay": { + "Web/JavaScript/Reference/Global_Objects/Date/getUTCDay": { "modified": "2019-03-23T22:52:25.959Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getUTCFullYear": { + "Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear": { "modified": "2019-03-23T22:52:25.556Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getUTCHours": { + "Web/JavaScript/Reference/Global_Objects/Date/getUTCHours": { "modified": "2019-03-23T22:52:30.723Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMilliseconds": { + "Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds": { "modified": "2019-03-23T22:50:00.925Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMinutes": { + "Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes": { "modified": "2019-03-23T22:50:03.275Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMonth": { + "Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth": { "modified": "2019-03-23T22:50:00.074Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getUTCSeconds": { + "Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds": { "modified": "2019-03-23T22:54:05.883Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/getYear": { + "Web/JavaScript/Reference/Global_Objects/Date/getYear": { "modified": "2019-03-23T22:55:06.079Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/now": { - "modified": "2019-03-23T22:58:46.822Z", + "Web/JavaScript/Reference/Global_Objects/Date": { + "modified": "2019-03-23T22:58:49.026Z", "contributors": [ + "wbamberg", "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/prototype": { - "modified": "2019-03-23T22:57:58.782Z", + "Web/JavaScript/Reference/Global_Objects/Date/now": { + "modified": "2019-03-23T22:58:46.822Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setDate": { + "Web/JavaScript/Reference/Global_Objects/Date/setDate": { "modified": "2019-03-23T22:48:51.145Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setFullYear": { + "Web/JavaScript/Reference/Global_Objects/Date/setFullYear": { "modified": "2019-03-23T22:49:59.211Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setHours": { + "Web/JavaScript/Reference/Global_Objects/Date/setHours": { "modified": "2019-03-23T22:50:02.700Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setMilliseconds": { + "Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds": { "modified": "2019-03-23T22:49:57.669Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setMinutes": { + "Web/JavaScript/Reference/Global_Objects/Date/setMinutes": { "modified": "2019-03-23T22:49:59.031Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setMonth": { + "Web/JavaScript/Reference/Global_Objects/Date/setMonth": { "modified": "2019-03-23T22:50:03.659Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setSeconds": { + "Web/JavaScript/Reference/Global_Objects/Date/setSeconds": { "modified": "2019-03-23T22:50:03.128Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setTime": { + "Web/JavaScript/Reference/Global_Objects/Date/setTime": { "modified": "2019-03-23T22:49:27.118Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setUTCDate": { + "Web/JavaScript/Reference/Global_Objects/Date/setUTCDate": { "modified": "2019-03-23T22:49:50.108Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setUTCFullYear": { + "Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear": { "modified": "2019-03-23T22:49:52.095Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setUTCHours": { + "Web/JavaScript/Reference/Global_Objects/Date/setUTCHours": { "modified": "2019-03-23T22:49:48.535Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMilliseconds": { + "Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds": { "modified": "2019-03-23T22:49:50.754Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMinutes": { + "Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes": { "modified": "2019-03-23T22:49:49.021Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMonth": { + "Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth": { "modified": "2019-03-23T22:49:46.275Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setUTCSeconds": { + "Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds": { "modified": "2019-03-23T22:49:41.087Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/setYear": { + "Web/JavaScript/Reference/Global_Objects/Date/setYear": { "modified": "2019-03-23T22:49:56.942Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/toDateString": { + "Web/JavaScript/Reference/Global_Objects/Date/toDateString": { "modified": "2019-03-23T22:48:45.186Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/toGMTString": { + "Web/JavaScript/Reference/Global_Objects/Date/toGMTString": { "modified": "2019-03-23T22:48:40.259Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/toISOString": { + "Web/JavaScript/Reference/Global_Objects/Date/toISOString": { "modified": "2019-03-23T22:43:47.322Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/toJSON": { + "Web/JavaScript/Reference/Global_Objects/Date/toJSON": { "modified": "2019-03-23T22:43:46.391Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/toString": { + "Web/JavaScript/Reference/Global_Objects/Date/toString": { "modified": "2019-03-23T22:48:56.142Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/toTimeString": { + "Web/JavaScript/Reference/Global_Objects/Date/toTimeString": { "modified": "2019-03-23T22:48:45.015Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Date/valueOf": { - "modified": "2019-03-23T22:50:27.263Z", + "Web/JavaScript/Reference/Global_Objects/Date/UTC": { + "modified": "2019-03-23T22:50:18.733Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Error": { - "modified": "2019-03-23T22:59:09.305Z", + "Web/JavaScript/Reference/Global_Objects/Date/valueOf": { + "modified": "2019-03-23T22:50:27.263Z", "contributors": [ - "agustisanchez", - "llue", - "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Error/Stack": { - "modified": "2019-03-23T22:53:56.473Z", + "Web/JavaScript/Reference/Global_Objects/Error/columnNumber": { + "modified": "2019-03-23T22:59:13.362Z", "contributors": [ + "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Error/columnNumber": { - "modified": "2019-03-23T22:59:13.362Z", + "Web/JavaScript/Reference/Global_Objects/Error/fileName": { + "modified": "2019-03-23T22:59:08.164Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Error/fileName": { - "modified": "2019-03-23T22:59:08.164Z", + "Web/JavaScript/Reference/Global_Objects/Error": { + "modified": "2019-03-23T22:59:09.305Z", "contributors": [ + "agustisanchez", + "llue", "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Error/lineNumber": { + "Web/JavaScript/Reference/Global_Objects/Error/lineNumber": { "modified": "2019-03-23T22:58:50.297Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Error/message": { + "Web/JavaScript/Reference/Global_Objects/Error/message": { "modified": "2019-03-23T22:58:44.991Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Error/name": { + "Web/JavaScript/Reference/Global_Objects/Error/name": { "modified": "2019-03-23T22:58:36.308Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Error/prototype": { - "modified": "2019-03-23T22:58:43.169Z", + "Web/JavaScript/Reference/Global_Objects/Error/Stack": { + "modified": "2019-03-23T22:53:56.473Z", "contributors": [ - "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Error/toSource": { + "Web/JavaScript/Reference/Global_Objects/Error/toSource": { "modified": "2019-03-23T22:50:37.577Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Error/toString": { + "Web/JavaScript/Reference/Global_Objects/Error/toString": { "modified": "2019-03-23T22:58:29.847Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Infinity": { - "modified": "2020-03-12T19:40:33.531Z", + "Web/JavaScript/Reference/Global_Objects": { + "modified": "2020-03-12T19:40:38.690Z", "contributors": [ "teoli", - "Sheppy", - "enTropy" + "enTropy", + "Sheppy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/JSON": { - "modified": "2019-03-23T22:59:27.157Z", + "Web/JavaScript/Reference/Global_Objects/Infinity": { + "modified": "2020-03-12T19:40:33.531Z", "contributors": [ "teoli", + "Sheppy", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map": { - "modified": "2019-03-23T22:58:51.190Z", + "Web/JavaScript/Reference/Global_Objects/JSON": { + "modified": "2019-03-23T22:59:27.157Z", "contributors": [ - "SphinxKnight", - "enTropy", "teoli", - "llue" + "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map/clear": { + "Web/JavaScript/Reference/Global_Objects/Map/clear": { "modified": "2019-03-23T22:48:01.579Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map/delete": { + "Web/JavaScript/Reference/Global_Objects/Map/delete": { "modified": "2019-03-23T22:46:15.513Z", "contributors": [ "SphinxKnight", "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map/entries": { + "Web/JavaScript/Reference/Global_Objects/Map/entries": { "modified": "2019-03-23T22:46:12.124Z", "contributors": [ "SphinxKnight", "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map/forEach": { + "Web/JavaScript/Reference/Global_Objects/Map/forEach": { "modified": "2019-03-23T22:36:05.941Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map/get": { + "Web/JavaScript/Reference/Global_Objects/Map/get": { "modified": "2019-03-23T22:36:04.988Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map/has": { + "Web/JavaScript/Reference/Global_Objects/Map/has": { "modified": "2019-03-23T22:47:08.906Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map/keys": { - "modified": "2019-03-23T22:46:07.341Z", + "Web/JavaScript/Reference/Global_Objects/Map": { + "modified": "2019-03-23T22:58:51.190Z", "contributors": [ "SphinxKnight", + "enTropy", + "teoli", "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map/prototype": { - "modified": "2019-03-23T22:48:45.592Z", + "Web/JavaScript/Reference/Global_Objects/Map/keys": { + "modified": "2019-03-23T22:46:07.341Z", "contributors": [ "SphinxKnight", - "enTropy" + "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map/set": { + "Web/JavaScript/Reference/Global_Objects/Map/set": { "modified": "2019-03-23T22:47:59.009Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map/size": { + "Web/JavaScript/Reference/Global_Objects/Map/size": { "modified": "2019-03-23T22:44:25.711Z", "contributors": [ "SphinxKnight", "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Map/values": { + "Web/JavaScript/Reference/Global_Objects/Map/values": { "modified": "2019-03-23T22:46:05.395Z", "contributors": [ "SphinxKnight", "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math": { - "modified": "2019-03-23T23:02:38.773Z", - "contributors": [ - "teoli", - "Sheppy", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Math/E": { - "modified": "2019-03-23T22:59:53.807Z", - "contributors": [ - "txatoman", - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Math/LN10": { - "modified": "2019-03-23T22:59:31.907Z", - "contributors": [ - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Math/LN2": { - "modified": "2019-03-23T22:59:34.119Z", - "contributors": [ - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Math/LOG10E": { - "modified": "2019-03-23T22:59:30.685Z", - "contributors": [ - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Math/LOG2E": { - "modified": "2019-03-23T22:59:30.287Z", - "contributors": [ - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Math/PI": { - "modified": "2019-03-23T22:59:30.058Z", - "contributors": [ - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Math/SQRT1_2": { - "modified": "2019-03-23T22:58:52.217Z", - "contributors": [ - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Math/SQRT2": { - "modified": "2019-03-23T22:58:47.387Z", - "contributors": [ - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/Math/abs": { + "Web/JavaScript/Reference/Global_Objects/Math/abs": { "modified": "2019-03-23T22:58:46.278Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/acos": { + "Web/JavaScript/Reference/Global_Objects/Math/acos": { "modified": "2019-03-23T22:58:47.009Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/acosh": { + "Web/JavaScript/Reference/Global_Objects/Math/acosh": { "modified": "2019-03-23T22:48:46.522Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/asin": { + "Web/JavaScript/Reference/Global_Objects/Math/asin": { "modified": "2019-03-23T22:58:44.169Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/asinh": { + "Web/JavaScript/Reference/Global_Objects/Math/asinh": { "modified": "2019-03-23T22:48:48.134Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/atan": { + "Web/JavaScript/Reference/Global_Objects/Math/atan": { "modified": "2019-03-23T22:58:42.177Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/atan2": { + "Web/JavaScript/Reference/Global_Objects/Math/atan2": { "modified": "2019-03-23T22:48:53.219Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/atanh": { + "Web/JavaScript/Reference/Global_Objects/Math/atanh": { "modified": "2019-03-23T22:48:44.070Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/cbrt": { + "Web/JavaScript/Reference/Global_Objects/Math/cbrt": { "modified": "2019-03-23T22:48:55.792Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/ceil": { + "Web/JavaScript/Reference/Global_Objects/Math/ceil": { "modified": "2019-03-23T22:58:48.560Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/clz32": { + "Web/JavaScript/Reference/Global_Objects/Math/clz32": { "modified": "2019-03-23T22:48:56.655Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/cos": { + "Web/JavaScript/Reference/Global_Objects/Math/cos": { "modified": "2019-03-23T22:58:45.410Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/cosh": { + "Web/JavaScript/Reference/Global_Objects/Math/cosh": { "modified": "2019-03-23T22:48:43.862Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/exp": { + "Web/JavaScript/Reference/Global_Objects/Math/E": { + "modified": "2019-03-23T22:59:53.807Z", + "contributors": [ + "txatoman", + "teoli", + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Math/exp": { "modified": "2019-03-23T22:50:22.320Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/expm1": { + "Web/JavaScript/Reference/Global_Objects/Math/expm1": { "modified": "2019-03-23T22:50:01.816Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/floor": { + "Web/JavaScript/Reference/Global_Objects/Math/floor": { "modified": "2019-03-23T22:58:49.209Z", "contributors": [ "emoriarty", @@ -4168,133 +4001,190 @@ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/fround": { + "Web/JavaScript/Reference/Global_Objects/Math/fround": { "modified": "2019-03-23T22:50:16.642Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/hypot": { + "Web/JavaScript/Reference/Global_Objects/Math/hypot": { "modified": "2019-03-23T22:48:56.476Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/imul": { + "Web/JavaScript/Reference/Global_Objects/Math/imul": { "modified": "2019-03-23T22:50:18.208Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/log": { + "Web/JavaScript/Reference/Global_Objects/Math": { + "modified": "2019-03-23T23:02:38.773Z", + "contributors": [ + "teoli", + "Sheppy", + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Math/LN10": { + "modified": "2019-03-23T22:59:31.907Z", + "contributors": [ + "teoli", + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Math/LN2": { + "modified": "2019-03-23T22:59:34.119Z", + "contributors": [ + "teoli", + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Math/log": { "modified": "2019-03-23T22:50:10.638Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/log10": { + "Web/JavaScript/Reference/Global_Objects/Math/log10": { "modified": "2019-03-23T22:50:12.937Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/log1p": { + "Web/JavaScript/Reference/Global_Objects/Math/LOG10E": { + "modified": "2019-03-23T22:59:30.685Z", + "contributors": [ + "teoli", + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Math/log1p": { "modified": "2019-03-23T22:50:10.434Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/log2": { + "Web/JavaScript/Reference/Global_Objects/Math/log2": { "modified": "2019-03-23T22:50:11.657Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/max": { + "Web/JavaScript/Reference/Global_Objects/Math/LOG2E": { + "modified": "2019-03-23T22:59:30.287Z", + "contributors": [ + "teoli", + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Math/max": { "modified": "2019-03-23T22:50:08.623Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/min": { + "Web/JavaScript/Reference/Global_Objects/Math/min": { "modified": "2019-03-23T22:50:12.646Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/pow": { + "Web/JavaScript/Reference/Global_Objects/Math/PI": { + "modified": "2019-03-23T22:59:30.058Z", + "contributors": [ + "teoli", + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Math/pow": { "modified": "2019-03-23T22:50:15.471Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/random": { + "Web/JavaScript/Reference/Global_Objects/Math/random": { "modified": "2019-03-23T22:50:08.471Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/round": { + "Web/JavaScript/Reference/Global_Objects/Math/round": { "modified": "2019-03-23T22:50:17.743Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/sign": { + "Web/JavaScript/Reference/Global_Objects/Math/sign": { "modified": "2019-03-23T22:50:19.897Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/sin": { + "Web/JavaScript/Reference/Global_Objects/Math/sin": { "modified": "2019-03-23T22:58:51.491Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/sinh": { + "Web/JavaScript/Reference/Global_Objects/Math/sinh": { "modified": "2019-03-23T22:48:42.925Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/sqrt": { + "Web/JavaScript/Reference/Global_Objects/Math/sqrt": { "modified": "2019-03-23T22:50:15.980Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/tan": { + "Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2": { + "modified": "2019-03-23T22:58:52.217Z", + "contributors": [ + "teoli", + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Math/SQRT2": { + "modified": "2019-03-23T22:58:47.387Z", + "contributors": [ + "teoli", + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Math/tan": { "modified": "2019-03-23T22:58:48.781Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/tanh": { + "Web/JavaScript/Reference/Global_Objects/Math/tanh": { "modified": "2019-03-23T22:48:43.115Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Math/trunc": { + "Web/JavaScript/Reference/Global_Objects/Math/trunc": { "modified": "2019-03-23T22:50:09.096Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/NaN": { + "Web/JavaScript/Reference/Global_Objects/NaN": { "modified": "2020-03-12T19:40:28.856Z", "contributors": [ "teoli", @@ -4302,16 +4192,15 @@ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number": { - "modified": "2019-03-23T23:02:38.020Z", + "Web/JavaScript/Reference/Global_Objects/null": { + "modified": "2020-03-12T19:40:31.685Z", "contributors": [ - "wbamberg", "teoli", "Sheppy", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/EPSILON": { + "Web/JavaScript/Reference/Global_Objects/Number/EPSILON": { "modified": "2019-03-23T23:02:23.744Z", "contributors": [ "SphinxKnight", @@ -4319,402 +4208,384 @@ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/MAX_SAFE_INTEGER": { - "modified": "2019-03-23T22:59:46.174Z", + "Web/JavaScript/Reference/Global_Objects/Number": { + "modified": "2019-03-23T23:02:38.020Z", "contributors": [ - "SphinxKnight", + "wbamberg", "teoli", + "Sheppy", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/MAX_VALUE": { - "modified": "2019-03-23T22:59:54.604Z", + "Web/JavaScript/Reference/Global_Objects/Number/isFinite": { + "modified": "2019-03-23T22:50:13.566Z", "contributors": [ - "teoli", - "enTropy", - "llue" + "SphinxKnight", + "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/MIN_SAFE_INTEGER": { - "modified": "2019-03-23T22:59:44.907Z", + "Web/JavaScript/Reference/Global_Objects/Number/isInteger": { + "modified": "2019-03-23T22:50:19.513Z", "contributors": [ "SphinxKnight", - "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/MIN_VALUE": { - "modified": "2019-03-23T22:59:48.435Z", + "Web/JavaScript/Reference/Global_Objects/Number/isNaN": { + "modified": "2019-03-23T22:50:18.389Z", "contributors": [ - "teoli", - "llue" + "SphinxKnight", + "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/NEGATIVE_INFINITY": { - "modified": "2020-11-14T03:03:56.198Z", + "Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger": { + "modified": "2019-03-23T22:50:16.157Z", "contributors": [ - "jaumeol", - "teoli", - "llue" + "SphinxKnight", + "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/NaN": { - "modified": "2019-03-23T22:59:42.798Z", + "Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER": { + "modified": "2019-03-23T22:59:46.174Z", "contributors": [ + "SphinxKnight", "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/POSITIVE_INFINITY": { - "modified": "2019-03-23T22:50:15.189Z", + "Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE": { + "modified": "2019-03-23T22:59:54.604Z", "contributors": [ - "enTropy" + "teoli", + "enTropy", + "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/isFinite": { - "modified": "2019-03-23T22:50:13.566Z", + "Web/JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER": { + "modified": "2019-03-23T22:59:44.907Z", "contributors": [ "SphinxKnight", + "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/isInteger": { - "modified": "2019-03-23T22:50:19.513Z", + "Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE": { + "modified": "2019-03-23T22:59:48.435Z", "contributors": [ - "SphinxKnight", - "enTropy" + "teoli", + "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/isNaN": { - "modified": "2019-03-23T22:50:18.389Z", + "Web/JavaScript/Reference/Global_Objects/Number/NaN": { + "modified": "2019-03-23T22:59:42.798Z", "contributors": [ - "SphinxKnight", + "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/isSafeInteger": { - "modified": "2019-03-23T22:50:16.157Z", + "Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY": { + "modified": "2020-11-14T03:03:56.198Z", "contributors": [ - "SphinxKnight", - "enTropy" + "jaumeol", + "teoli", + "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/parseFloat": { + "Web/JavaScript/Reference/Global_Objects/Number/parseFloat": { "modified": "2019-03-23T22:50:16.465Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/parseInt": { + "Web/JavaScript/Reference/Global_Objects/Number/parseInt": { "modified": "2019-03-23T22:50:15.600Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/prototype": { - "modified": "2019-03-23T22:50:16.328Z", + "Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY": { + "modified": "2019-03-23T22:50:15.189Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/toExponential": { + "Web/JavaScript/Reference/Global_Objects/Number/toExponential": { "modified": "2019-03-23T22:47:09.904Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/toFixed": { + "Web/JavaScript/Reference/Global_Objects/Number/toFixed": { "modified": "2019-03-23T22:47:11.555Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/toPrecision": { + "Web/JavaScript/Reference/Global_Objects/Number/toPrecision": { "modified": "2019-03-23T22:47:14.199Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Number/toString": { + "Web/JavaScript/Reference/Global_Objects/Number/toString": { "modified": "2019-03-23T22:48:42.234Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Set": { - "modified": "2019-03-23T22:50:13.401Z", + "Web/JavaScript/Reference/Global_Objects/parseFloat": { + "modified": "2020-03-12T19:42:39.159Z", "contributors": [ - "SphinxKnight", - "enTropy" + "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Set/add": { + "Web/JavaScript/Reference/Global_Objects/Set/add": { "modified": "2019-03-23T22:47:36.595Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Set/clear": { + "Web/JavaScript/Reference/Global_Objects/Set/clear": { "modified": "2019-03-23T22:47:32.618Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Set/delete": { + "Web/JavaScript/Reference/Global_Objects/Set/delete": { "modified": "2019-03-23T22:47:38.806Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Set/entries": { + "Web/JavaScript/Reference/Global_Objects/Set/entries": { "modified": "2019-03-23T22:47:23.301Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Set/has": { + "Web/JavaScript/Reference/Global_Objects/Set/has": { "modified": "2019-03-23T22:47:39.893Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Set/prototype": { - "modified": "2019-03-23T22:48:42.404Z", + "Web/JavaScript/Reference/Global_Objects/Set": { + "modified": "2019-03-23T22:50:13.401Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/Set/values": { + "Web/JavaScript/Reference/Global_Objects/Set/values": { "modified": "2019-03-23T22:47:24.630Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String": { - "modified": "2019-03-23T22:59:56.998Z", - "contributors": [ - "wbamberg", - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/String/Trim": { - "modified": "2019-03-23T22:47:13.066Z", - "contributors": [ - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/String/TrimLeft": { - "modified": "2019-03-23T22:47:12.920Z", - "contributors": [ - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/String/TrimRight": { - "modified": "2019-03-23T22:47:06.878Z", - "contributors": [ - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Objectes_globals/String/anchor": { + "Web/JavaScript/Reference/Global_Objects/String/anchor": { "modified": "2019-03-23T22:46:04.637Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/big": { + "Web/JavaScript/Reference/Global_Objects/String/big": { "modified": "2019-03-23T22:46:08.467Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/blink": { + "Web/JavaScript/Reference/Global_Objects/String/blink": { "modified": "2019-03-23T22:46:14.520Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/bold": { + "Web/JavaScript/Reference/Global_Objects/String/bold": { "modified": "2019-03-23T22:46:06.144Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/charAt": { + "Web/JavaScript/Reference/Global_Objects/String/charAt": { "modified": "2019-03-23T22:34:11.527Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/concat": { + "Web/JavaScript/Reference/Global_Objects/String/concat": { "modified": "2019-03-23T22:47:12.620Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/endsWith": { + "Web/JavaScript/Reference/Global_Objects/String/endsWith": { "modified": "2019-03-23T22:46:45.620Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/fixed": { + "Web/JavaScript/Reference/Global_Objects/String/fixed": { "modified": "2019-03-23T22:46:13.249Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/fontcolor": { + "Web/JavaScript/Reference/Global_Objects/String/fontcolor": { "modified": "2019-03-23T22:46:09.421Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/fontsize": { + "Web/JavaScript/Reference/Global_Objects/String/fontsize": { "modified": "2019-03-23T22:46:08.641Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/fromCharCode": { + "Web/JavaScript/Reference/Global_Objects/String/fromCharCode": { "modified": "2019-03-23T22:44:31.969Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/indexOf": { + "Web/JavaScript/Reference/Global_Objects/String": { + "modified": "2019-03-23T22:59:56.998Z", + "contributors": [ + "wbamberg", + "teoli", + "enTropy" + ] + }, + "Web/JavaScript/Reference/Global_Objects/String/indexOf": { "modified": "2019-03-23T22:35:48.565Z", "contributors": [ "paumoreno", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/italics": { + "Web/JavaScript/Reference/Global_Objects/String/italics": { "modified": "2019-03-23T22:45:54.760Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/length": { + "Web/JavaScript/Reference/Global_Objects/String/length": { "modified": "2019-03-23T22:59:07.848Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/link": { + "Web/JavaScript/Reference/Global_Objects/String/link": { "modified": "2019-03-23T22:46:06.865Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/normalize": { + "Web/JavaScript/Reference/Global_Objects/String/normalize": { "modified": "2019-03-23T22:47:12.181Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/small": { + "Web/JavaScript/Reference/Global_Objects/String/small": { "modified": "2019-03-23T22:46:05.677Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/startsWith": { + "Web/JavaScript/Reference/Global_Objects/String/startsWith": { "modified": "2019-03-23T22:47:12.778Z", "contributors": [ "SphinxKnight", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/sub": { + "Web/JavaScript/Reference/Global_Objects/String/sub": { "modified": "2019-03-23T22:45:49.091Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/substr": { + "Web/JavaScript/Reference/Global_Objects/String/substr": { "modified": "2019-03-23T22:45:47.809Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/sup": { + "Web/JavaScript/Reference/Global_Objects/String/sup": { "modified": "2019-03-23T22:45:50.875Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/toLocaleLowerCase": { + "Web/JavaScript/Reference/Global_Objects/String/toLocaleLowerCase": { "modified": "2019-03-23T22:50:22.032Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/toLocaleUpperCase": { + "Web/JavaScript/Reference/Global_Objects/String/toLocaleUpperCase": { "modified": "2019-03-23T22:50:21.889Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/toLowerCase": { + "Web/JavaScript/Reference/Global_Objects/String/toLowerCase": { "modified": "2019-03-23T22:50:11.452Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/toString": { + "Web/JavaScript/Reference/Global_Objects/String/toString": { "modified": "2019-03-23T22:47:22.295Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/String/toUpperCase": { + "Web/JavaScript/Reference/Global_Objects/String/toUpperCase": { "modified": "2019-03-23T22:50:17.891Z", "contributors": [ "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/SyntaxError": { - "modified": "2019-03-23T22:47:51.903Z", + "Web/JavaScript/Reference/Global_Objects/String/Trim": { + "modified": "2019-03-23T22:47:13.066Z", "contributors": [ - "llue" + "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/SyntaxError/prototype": { - "modified": "2019-03-23T22:47:20.553Z", + "Web/JavaScript/Reference/Global_Objects/String/trimStart": { + "modified": "2019-03-23T22:47:12.920Z", "contributors": [ - "llue" + "teoli", + "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/null": { - "modified": "2020-03-12T19:40:31.685Z", + "Web/JavaScript/Reference/Global_Objects/String/trimEnd": { + "modified": "2019-03-23T22:47:06.878Z", "contributors": [ "teoli", - "Sheppy", "enTropy" ] }, - "Web/JavaScript/Referencia/Objectes_globals/parseFloat": { - "modified": "2020-03-12T19:42:39.159Z", + "Web/JavaScript/Reference/Global_Objects/SyntaxError": { + "modified": "2019-03-23T22:47:51.903Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Objectes_globals/undefined": { + "Web/JavaScript/Reference/Global_Objects/undefined": { "modified": "2020-03-12T19:40:33.567Z", "contributors": [ "teoli", @@ -4722,37 +4593,20 @@ "enTropy" ] }, - "Web/JavaScript/Referencia/Operadors": { - "modified": "2020-03-12T19:40:33.454Z", - "contributors": [ - "teoli", - "enTropy", - "fscholz" - ] - }, - "Web/JavaScript/Referencia/Operadors/Arithmetic_Operators": { - "modified": "2020-03-12T19:40:35.933Z", + "Web/JavaScript/Reference/Operators/Conditional_Operator": { + "modified": "2020-03-12T19:40:36.029Z", "contributors": [ "teoli", - "enTropy", "llue" ] }, - "Web/JavaScript/Referencia/Operadors/Bitwise_Operators": { - "modified": "2020-03-12T19:40:37.718Z", - "contributors": [ - "teoli", - "enTropy" - ] - }, - "Web/JavaScript/Referencia/Operadors/Conditional_Operator": { - "modified": "2020-03-12T19:40:36.029Z", + "Web/JavaScript/Reference/Operators/function": { + "modified": "2020-03-12T19:43:14.603Z", "contributors": [ - "teoli", "llue" ] }, - "Web/JavaScript/Referencia/Operadors/Grouping": { + "Web/JavaScript/Reference/Operators/Grouping": { "modified": "2020-03-12T19:40:35.580Z", "contributors": [ "teoli", @@ -4760,15 +4614,15 @@ "llue" ] }, - "Web/JavaScript/Referencia/Operadors/Logical_Operators": { - "modified": "2020-03-12T19:40:33.485Z", + "Web/JavaScript/Reference/Operators": { + "modified": "2020-03-12T19:40:33.454Z", "contributors": [ "teoli", "enTropy", - "llue" + "fscholz" ] }, - "Web/JavaScript/Referencia/Operadors/Operador_Coma": { + "Web/JavaScript/Reference/Operators/Comma_Operator": { "modified": "2020-03-12T19:40:38.129Z", "contributors": [ "teoli", @@ -4776,20 +4630,14 @@ "llue" ] }, - "Web/JavaScript/Referencia/Operadors/function": { - "modified": "2020-03-12T19:43:14.603Z", - "contributors": [ - "llue" - ] - }, - "Web/JavaScript/Referencia/Operadors/super": { + "Web/JavaScript/Reference/Operators/super": { "modified": "2020-03-12T19:40:57.165Z", "contributors": [ "SphinxKnight", "llue" ] }, - "Web/JavaScript/Referencia/Operadors/typeof": { + "Web/JavaScript/Reference/Operators/typeof": { "modified": "2020-03-12T19:40:39.552Z", "contributors": [ "teoli", @@ -4797,68 +4645,60 @@ "llue" ] }, - "Web/JavaScript/Referencia/Operadors/void": { + "Web/JavaScript/Reference/Operators/void": { "modified": "2020-03-12T19:40:51.423Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Operadors/yield": { + "Web/JavaScript/Reference/Operators/yield": { "modified": "2020-03-12T19:40:38.885Z", "contributors": [ "teoli", "enTropy" ] }, - "Web/JavaScript/Referencia/Sentencies": { - "modified": "2020-03-12T19:40:33.725Z", - "contributors": [ - "fscholz", - "enTropy", - "schlagi123" - ] - }, - "Web/JavaScript/Referencia/Sentencies/Buida": { - "modified": "2020-03-12T19:40:53.165Z", + "Web/JavaScript/Reference/Statements/block": { + "modified": "2020-03-12T19:40:58.782Z", "contributors": [ "fscholz", "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/block": { - "modified": "2020-03-12T19:40:58.782Z", + "Web/JavaScript/Reference/Statements/break": { + "modified": "2020-03-12T19:42:37.121Z", "contributors": [ - "fscholz", "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/break": { - "modified": "2020-03-12T19:42:37.121Z", + "Web/JavaScript/Reference/Statements/Empty": { + "modified": "2020-03-12T19:40:53.165Z", "contributors": [ + "fscholz", "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/continue": { + "Web/JavaScript/Reference/Statements/continue": { "modified": "2020-03-12T19:42:36.256Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/debugger": { + "Web/JavaScript/Reference/Statements/debugger": { "modified": "2020-03-12T19:42:42.043Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/do...while": { + "Web/JavaScript/Reference/Statements/do...while": { "modified": "2020-03-12T19:42:35.370Z", "contributors": [ "antoniomatt", "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/export": { + "Web/JavaScript/Reference/Statements/export": { "modified": "2020-11-15T17:57:08.110Z", "contributors": [ "marc.valerio", @@ -4867,56 +4707,64 @@ "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/for": { - "modified": "2020-03-12T19:40:55.949Z", + "Web/JavaScript/Reference/Statements/for...of": { + "modified": "2020-03-12T19:40:34.152Z", "contributors": [ + "SphinxKnight", "fscholz", - "llue" + "enTropy" ] }, - "Web/JavaScript/Referencia/Sentencies/for...of": { - "modified": "2020-03-12T19:40:34.152Z", + "Web/JavaScript/Reference/Statements/for": { + "modified": "2020-03-12T19:40:55.949Z", "contributors": [ - "SphinxKnight", "fscholz", - "enTropy" + "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/function": { + "Web/JavaScript/Reference/Statements/function": { "modified": "2020-03-12T19:40:57.798Z", "contributors": [ "fscholz", "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/if...else": { + "Web/JavaScript/Reference/Statements/if...else": { "modified": "2020-03-12T19:40:53.418Z", "contributors": [ "fscholz", "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/return": { + "Web/JavaScript/Reference/Statements": { + "modified": "2020-03-12T19:40:33.725Z", + "contributors": [ + "fscholz", + "enTropy", + "schlagi123" + ] + }, + "Web/JavaScript/Reference/Statements/return": { "modified": "2020-03-12T19:40:55.904Z", "contributors": [ "fscholz", "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/throw": { + "Web/JavaScript/Reference/Statements/throw": { "modified": "2020-03-12T19:42:33.312Z", "contributors": [ "llue" ] }, - "Web/JavaScript/Referencia/Sentencies/while": { + "Web/JavaScript/Reference/Statements/while": { "modified": "2020-03-12T19:40:53.547Z", "contributors": [ "fscholz", "llue" ] }, - "Web/JavaScript/Referencia/Sobre": { + "Web/JavaScript/Reference/About": { "modified": "2020-03-12T19:38:14.941Z", "contributors": [ "enTropy", @@ -4924,76 +4772,228 @@ "JordiGuilleumes" ] }, - "Web/JavaScript/quant_a_JavaScript": { - "modified": "2020-07-27T11:53:21.427Z", + "Web/OpenSearch": { + "modified": "2019-01-16T15:50:29.790Z", "contributors": [ - "joanpardo", - "enTropy" + "Toniher" ] }, - "Web/Reference": { - "modified": "2019-03-23T22:22:23.982Z", + "conflicting/Web/Guide": { + "modified": "2019-03-23T23:33:13.846Z", "contributors": [ - "Legioinvicta", - "andrealeone" + "caos30", + "ethertank" ] }, - "Web/Reference/API": { - "modified": "2019-03-23T22:22:24.413Z", + "Web/Guide/Mobile": { + "modified": "2019-03-23T23:33:13.336Z", + "contributors": [ + "caos30", + "wbamberg" + ] + }, + "Web/Progressive_web_apps": { + "modified": "2019-03-23T23:33:17.529Z", + "contributors": [ + "caos30" + ] + }, + "Web/CSS/:is": { + "modified": "2019-03-23T22:21:40.467Z", "contributors": [ "Legioinvicta" ] }, - "Web/Tutorials": { - "modified": "2019-03-23T22:22:12.721Z", + "conflicting/Learn/CSS/Building_blocks": { + "modified": "2019-03-23T22:21:00.737Z", "contributors": [ "Legioinvicta" ] }, - "Web/XSLT": { - "modified": "2019-03-23T23:40:59.738Z", + "conflicting/Learn/CSS/Building_blocks/Cascade_and_inheritance": { + "modified": "2019-03-23T22:21:11.477Z", + "contributors": [ + "Legioinvicta" + ] + }, + "conflicting/Learn/CSS/Building_blocks/Values_and_units": { + "modified": "2019-03-23T22:20:58.899Z", + "contributors": [ + "Legioinvicta" + ] + }, + "conflicting/Learn/CSS/First_steps/How_CSS_works": { + "modified": "2019-03-23T22:21:14.792Z", + "contributors": [ + "Legioinvicta" + ] + }, + "conflicting/Learn/CSS/First_steps/How_CSS_is_structured": { + "modified": "2019-03-23T22:20:58.263Z", + "contributors": [ + "Legioinvicta" + ] + }, + "conflicting/Learn/CSS/CSS_layout": { + "modified": "2019-03-23T22:20:52.030Z", + "contributors": [ + "Legioinvicta" + ] + }, + "conflicting/Learn/CSS/Styling_text/Fundamentals": { + "modified": "2019-03-23T22:21:09.957Z", + "contributors": [ + "Legioinvicta" + ] + }, + "conflicting/Learn/CSS/First_steps": { + "modified": "2019-03-23T22:22:04.507Z", + "contributors": [ + "Legioinvicta" + ] + }, + "Learn/JavaScript/Client-side_web_APIs/Manipulating_documents": { + "modified": "2019-03-23T22:20:34.923Z", + "contributors": [ + "Legioinvicta" + ] + }, + "conflicting/Learn/CSS/Styling_text/Styling_lists": { + "modified": "2019-03-23T22:21:00.463Z", + "contributors": [ + "Legioinvicta" + ] + }, + "conflicting/Learn/CSS/First_steps/How_CSS_works_54b8e7ce45c74338181144ded4fbdccf": { + "modified": "2019-03-23T22:21:21.787Z", + "contributors": [ + "Legioinvicta" + ] + }, + "conflicting/Learn/CSS/First_steps/How_CSS_works_9566880e82eb23b2f47f8821f75e0ab1": { + "modified": "2019-03-23T22:21:22.840Z", + "contributors": [ + "Legioinvicta" + ] + }, + "conflicting/Learn/CSS/Building_blocks/Selectors": { + "modified": "2019-03-23T22:21:02.763Z", + "contributors": [ + "Legioinvicta" + ] + }, + "conflicting/Learn/CSS/Building_blocks/Styling_tables": { + "modified": "2019-03-23T22:20:47.336Z", + "contributors": [ + "Legioinvicta" + ] + }, + "Learn/JavaScript/Objects": { + "modified": "2020-03-12T19:40:42.090Z", + "contributors": [ + "llue" + ] + }, + "conflicting/Web/JavaScript/Reference/Global_Objects/DataView": { + "modified": "2019-03-23T22:46:15.196Z", + "contributors": [ + "llue" + ] + }, + "conflicting/Web/JavaScript/Reference/Global_Objects/EvalError": { + "modified": "2019-03-23T22:47:27.467Z", + "contributors": [ + "llue" + ] + }, + "conflicting/Web/JavaScript/Reference/Global_Objects/Object": { + "modified": "2019-03-23T22:48:18.297Z", + "contributors": [ + "enTropy" + ] + }, + "conflicting/Web/JavaScript/Reference/Global_Objects/WeakMap": { + "modified": "2019-03-23T22:44:02.612Z", + "contributors": [ + "SphinxKnight", + "llue" + ] + }, + "conflicting/Web/JavaScript/Reference/Global_Objects/WeakSet": { + "modified": "2019-03-23T22:44:06.443Z", + "contributors": [ + "SphinxKnight", + "llue" + ] + }, + "conflicting/Web/JavaScript/Reference/Global_Objects/Boolean": { + "modified": "2019-03-23T22:58:39.243Z", "contributors": [ - "ExE-Boss", "teoli", - "Oriol" + "enTropy" ] }, - "Web_Development": { - "modified": "2019-03-23T23:33:13.846Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/Date": { + "modified": "2019-03-23T22:57:58.782Z", "contributors": [ - "caos30", - "ethertank" + "teoli", + "enTropy" ] }, - "Web_Development/Mobile": { - "modified": "2019-03-23T23:33:13.336Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/Error": { + "modified": "2019-03-23T22:58:43.169Z", "contributors": [ - "caos30", - "wbamberg" + "teoli", + "enTropy" ] }, - "Web_Development/Mobile/A_hybrid_approach": { - "modified": "2019-03-23T23:33:18.345Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/Map": { + "modified": "2019-03-23T22:48:45.592Z", "contributors": [ - "trevorh" + "SphinxKnight", + "enTropy" ] }, - "Web_Development/Mobile/Mobile-friendliness": { - "modified": "2019-03-23T23:33:21.925Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/Number": { + "modified": "2019-03-23T22:50:16.328Z", "contributors": [ - "caos30" + "enTropy" ] }, - "Web_Development/Mobile/Responsive_design": { - "modified": "2019-03-23T23:33:17.529Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/Set": { + "modified": "2019-03-23T22:48:42.404Z", "contributors": [ - "caos30" + "SphinxKnight", + "enTropy" ] }, - "Web_Development/Mobile/Separate_sites": { - "modified": "2019-03-23T23:33:19.296Z", + "conflicting/Web/JavaScript/Reference/Global_Objects/SyntaxError": { + "modified": "2019-03-23T22:47:20.553Z", "contributors": [ - "trevorh" + "llue" + ] + }, + "conflicting/Web/JavaScript/Reference/Operators": { + "modified": "2020-03-12T19:40:35.933Z", + "contributors": [ + "teoli", + "enTropy", + "llue" + ] + }, + "conflicting/Web/JavaScript/Reference/Operators_94c03c413a71df1ccff4c3ede275360c": { + "modified": "2020-03-12T19:40:37.718Z", + "contributors": [ + "teoli", + "enTropy" + ] + }, + "conflicting/Web/JavaScript/Reference/Operators_af596841c6a3650ee514088f0e310901": { + "modified": "2020-03-12T19:40:33.485Z", + "contributors": [ + "teoli", + "enTropy", + "llue" ] } } \ No newline at end of file diff --git a/files/ca/conflicting/learn/css/building_blocks/cascade_and_inheritance/index.html b/files/ca/conflicting/learn/css/building_blocks/cascade_and_inheritance/index.html index b7bf86a77f..738c16d558 100644 --- a/files/ca/conflicting/learn/css/building_blocks/cascade_and_inheritance/index.html +++ b/files/ca/conflicting/learn/css/building_blocks/cascade_and_inheritance/index.html @@ -1,16 +1,17 @@ --- title: Cascada i herència -slug: Web/Guide/CSS/Inici_en_CSS/Cascada_i_herència +slug: conflicting/Learn/CSS/Building_blocks/Cascade_and_inheritance tags: - Beginner - CSS - - 'CSS:Getting_Started' + - CSS:Getting_Started - Guide - NeedsBeginnerUpdate - NeedsUpdate - Web translation_of: Learn/CSS/Building_blocks/Cascade_and_inheritance translation_of_original: Web/Guide/CSS/Getting_started/Cascading_and_inheritance +original_slug: Web/Guide/CSS/Inici_en_CSS/Cascada_i_herència ---

{{ CSSTutorialTOC() }}

diff --git a/files/ca/conflicting/learn/css/building_blocks/index.html b/files/ca/conflicting/learn/css/building_blocks/index.html index 39d411bb19..b0105c59c4 100644 --- a/files/ca/conflicting/learn/css/building_blocks/index.html +++ b/files/ca/conflicting/learn/css/building_blocks/index.html @@ -1,6 +1,6 @@ --- title: Caixes -slug: Web/Guide/CSS/Inici_en_CSS/Caixes +slug: conflicting/Learn/CSS/Building_blocks tags: - Basic - Beginner @@ -8,12 +8,13 @@ tags: - CSS Borders - CSS Margin - CSS Padding - - 'CSS:Getting_Started' + - CSS:Getting_Started - NeedsBeginnerUpdate - NeedsUpdate - Web translation_of: Learn/CSS/Building_blocks translation_of_original: Web/Guide/CSS/Getting_started/Boxes +original_slug: Web/Guide/CSS/Inici_en_CSS/Caixes ---

{{ CSSTutorialTOC() }}

diff --git a/files/ca/conflicting/learn/css/building_blocks/selectors/index.html b/files/ca/conflicting/learn/css/building_blocks/selectors/index.html index a3e8534ee5..3e3f5edc98 100644 --- a/files/ca/conflicting/learn/css/building_blocks/selectors/index.html +++ b/files/ca/conflicting/learn/css/building_blocks/selectors/index.html @@ -1,11 +1,11 @@ --- title: Selectors -slug: Web/Guide/CSS/Inici_en_CSS/Selectors +slug: conflicting/Learn/CSS/Building_blocks/Selectors tags: - Beginner - CSS - CSS Selector - - 'CSS:Getting_Started' + - CSS:Getting_Started - Example - Guide - NeedsBeginnerUpdate @@ -14,6 +14,7 @@ tags: - Web translation_of: Learn/CSS/Building_blocks/Selectors translation_of_original: Web/Guide/CSS/Getting_started/Selectors +original_slug: Web/Guide/CSS/Inici_en_CSS/Selectors ---

{{ CSSTutorialTOC() }}

diff --git a/files/ca/conflicting/learn/css/building_blocks/styling_tables/index.html b/files/ca/conflicting/learn/css/building_blocks/styling_tables/index.html index d7875ae370..7b09140c78 100644 --- a/files/ca/conflicting/learn/css/building_blocks/styling_tables/index.html +++ b/files/ca/conflicting/learn/css/building_blocks/styling_tables/index.html @@ -1,10 +1,10 @@ --- title: Taules -slug: Web/Guide/CSS/Inici_en_CSS/Taules +slug: conflicting/Learn/CSS/Building_blocks/Styling_tables tags: - CSS - CSS Tables - - 'CSS:Getting_Started' + - CSS:Getting_Started - Example - Guide - Intermediate @@ -14,6 +14,7 @@ tags: - Web translation_of: Learn/CSS/Building_blocks/Styling_tables translation_of_original: Web/Guide/CSS/Getting_started/Tables +original_slug: Web/Guide/CSS/Inici_en_CSS/Taules ---

{{CSSTutorialTOC}}{{previousPage("/en-US/docs/Web/Guide/CSS/Getting_Started/Layout", "Disseny")}}

diff --git a/files/ca/conflicting/learn/css/building_blocks/values_and_units/index.html b/files/ca/conflicting/learn/css/building_blocks/values_and_units/index.html index ba607aab18..dc9e9a197e 100644 --- a/files/ca/conflicting/learn/css/building_blocks/values_and_units/index.html +++ b/files/ca/conflicting/learn/css/building_blocks/values_and_units/index.html @@ -1,10 +1,10 @@ --- title: Color -slug: Web/Guide/CSS/Inici_en_CSS/Color +slug: conflicting/Learn/CSS/Building_blocks/Values_and_units tags: - Beginner - CSS - - 'CSS:Getting_Started' + - CSS:Getting_Started - Example - Guide - NeedsBeginnerUpdate @@ -12,6 +12,7 @@ tags: - Web translation_of: Learn/CSS/Introduction_to_CSS/Values_and_units#Colors translation_of_original: Web/Guide/CSS/Getting_started/Color +original_slug: Web/Guide/CSS/Inici_en_CSS/Color ---

{{ CSSTutorialTOC() }}

diff --git a/files/ca/conflicting/learn/css/css_layout/index.html b/files/ca/conflicting/learn/css/css_layout/index.html index 28045a681d..b19a07ffe4 100644 --- a/files/ca/conflicting/learn/css/css_layout/index.html +++ b/files/ca/conflicting/learn/css/css_layout/index.html @@ -1,12 +1,12 @@ --- title: Disseny -slug: Web/Guide/CSS/Inici_en_CSS/Disseny +slug: conflicting/Learn/CSS/CSS_layout tags: - CSS - CSS Float - CSS Text Align - CSS Unit - - 'CSS:Getting_Started' + - CSS:Getting_Started - Example - Guide - Intermediate @@ -16,6 +16,7 @@ tags: - Web translation_of: Learn/CSS/CSS_layout translation_of_original: Web/Guide/CSS/Getting_started/Layout +original_slug: Web/Guide/CSS/Inici_en_CSS/Disseny ---

{{ CSSTutorialTOC() }}

diff --git a/files/ca/conflicting/learn/css/first_steps/how_css_is_structured/index.html b/files/ca/conflicting/learn/css/first_steps/how_css_is_structured/index.html index 15b376dad0..d2b6959c85 100644 --- a/files/ca/conflicting/learn/css/first_steps/how_css_is_structured/index.html +++ b/files/ca/conflicting/learn/css/first_steps/how_css_is_structured/index.html @@ -1,9 +1,9 @@ --- title: CSS llegible -slug: Web/Guide/CSS/Inici_en_CSS/CSS_llegible +slug: conflicting/Learn/CSS/First_steps/How_CSS_is_structured tags: - CSS - - 'CSS:Getting_Started' + - CSS:Getting_Started - Guide - Intermediate - NeedsBeginnerUpdate @@ -11,6 +11,7 @@ tags: - Web translation_of: Learn/CSS/Introduction_to_CSS/Syntax#Beyond_syntax_make_CSS_readable translation_of_original: Web/Guide/CSS/Getting_started/Readable_CSS +original_slug: Web/Guide/CSS/Inici_en_CSS/CSS_llegible ---

{{ CSSTutorialTOC() }}

diff --git a/files/ca/conflicting/learn/css/first_steps/how_css_works/index.html b/files/ca/conflicting/learn/css/first_steps/how_css_works/index.html index eb6512b8bb..067de9bb09 100644 --- a/files/ca/conflicting/learn/css/first_steps/how_css_works/index.html +++ b/files/ca/conflicting/learn/css/first_steps/how_css_works/index.html @@ -1,16 +1,17 @@ --- title: Com funciona el CSS -slug: Web/Guide/CSS/Inici_en_CSS/Com_funciona_el_CSS +slug: conflicting/Learn/CSS/First_steps/How_CSS_works tags: - Beginner - CSS - - 'CSS:Getting_Started' + - CSS:Getting_Started - Guide - NeedsBeginnerUpdate - NeedsUpdate - Web translation_of: Learn/CSS/First_steps/How_CSS_works translation_of_original: Web/Guide/CSS/Getting_started/How_CSS_works +original_slug: Web/Guide/CSS/Inici_en_CSS/Com_funciona_el_CSS ---

{{ CSSTutorialTOC() }}

diff --git a/files/ca/conflicting/learn/css/first_steps/how_css_works_54b8e7ce45c74338181144ded4fbdccf/index.html b/files/ca/conflicting/learn/css/first_steps/how_css_works_54b8e7ce45c74338181144ded4fbdccf/index.html index d3685309c7..99da18a2b6 100644 --- a/files/ca/conflicting/learn/css/first_steps/how_css_works_54b8e7ce45c74338181144ded4fbdccf/index.html +++ b/files/ca/conflicting/learn/css/first_steps/how_css_works_54b8e7ce45c74338181144ded4fbdccf/index.html @@ -1,16 +1,18 @@ --- title: Per què utilitzar CSS? -slug: Web/Guide/CSS/Inici_en_CSS/Per_què_utilitzar_CSS +slug: >- + conflicting/Learn/CSS/First_steps/How_CSS_works_54b8e7ce45c74338181144ded4fbdccf tags: - Beginner - CSS - - 'CSS:Getting_Started' + - CSS:Getting_Started - Example - Guide - NeedsBeginnerUpdate - Web translation_of: Learn/CSS/First_steps/How_CSS_works translation_of_original: Web/Guide/CSS/Getting_started/Why_use_CSS +original_slug: Web/Guide/CSS/Inici_en_CSS/Per_què_utilitzar_CSS ---

{{ CSSTutorialTOC() }}

diff --git a/files/ca/conflicting/learn/css/first_steps/how_css_works_9566880e82eb23b2f47f8821f75e0ab1/index.html b/files/ca/conflicting/learn/css/first_steps/how_css_works_9566880e82eb23b2f47f8821f75e0ab1/index.html index 28db41fa98..5d4592efb8 100644 --- a/files/ca/conflicting/learn/css/first_steps/how_css_works_9566880e82eb23b2f47f8821f75e0ab1/index.html +++ b/files/ca/conflicting/learn/css/first_steps/how_css_works_9566880e82eb23b2f47f8821f75e0ab1/index.html @@ -1,16 +1,18 @@ --- title: Que és CSS? -slug: Web/Guide/CSS/Inici_en_CSS/Que_és_CSS +slug: >- + conflicting/Learn/CSS/First_steps/How_CSS_works_9566880e82eb23b2f47f8821f75e0ab1 tags: - Beginner - CSS - - 'CSS:Getting_Started' + - CSS:Getting_Started - Example - Guide - NeedsBeginnerUpdate - Web translation_of: Learn/CSS/First_steps/How_CSS_works translation_of_original: Web/Guide/CSS/Getting_started/What_is_CSS +original_slug: Web/Guide/CSS/Inici_en_CSS/Que_és_CSS ---
{{CSSTutorialTOC}}
diff --git a/files/ca/conflicting/learn/css/first_steps/index.html b/files/ca/conflicting/learn/css/first_steps/index.html index 8de66f308e..2f821fe1eb 100644 --- a/files/ca/conflicting/learn/css/first_steps/index.html +++ b/files/ca/conflicting/learn/css/first_steps/index.html @@ -1,10 +1,10 @@ --- title: Inici en CSS -slug: Web/Guide/CSS/Inici_en_CSS +slug: conflicting/Learn/CSS/First_steps tags: - Beginner - CSS - - 'CSS:Getting_Started' + - CSS:Getting_Started - Guide - Needs - NeedsBeginnerUpdate @@ -12,6 +12,7 @@ tags: - Web translation_of: Learn/CSS/First_steps translation_of_original: Web/Guide/CSS/Getting_started +original_slug: Web/Guide/CSS/Inici_en_CSS ---

Aquest tutorial és una introducció a les característiques bàsiques i llenguatge (la sintaxi) per als fulls d'estil en cascada(Cascading Style Sheets) (CSS). S'utilitza CSS per canviar l'aspecte d'un document estructurat, com ara una pàgina web. El tutorial també inclou exemples d'exercicis que podeu provar en el vostre ordinador per veure els efectes de les CSS i les característiques que funcionen en els navegadors moderns.

diff --git a/files/ca/conflicting/learn/css/styling_text/fundamentals/index.html b/files/ca/conflicting/learn/css/styling_text/fundamentals/index.html index a1a8c9364f..8561eb551c 100644 --- a/files/ca/conflicting/learn/css/styling_text/fundamentals/index.html +++ b/files/ca/conflicting/learn/css/styling_text/fundamentals/index.html @@ -1,11 +1,11 @@ --- title: Estils de text -slug: Web/Guide/CSS/Inici_en_CSS/Estils_de_text +slug: conflicting/Learn/CSS/Styling_text/Fundamentals tags: - Beginner - CSS - CSS Fonts - - 'CSS:Getting_Started' + - CSS:Getting_Started - Guide - NeedsBeginnerUpdate - NeedsLiveSample @@ -13,6 +13,7 @@ tags: - Web translation_of: Learn/CSS/Styling_text/Fundamentals translation_of_original: Web/Guide/CSS/Getting_started/Text_styles +original_slug: Web/Guide/CSS/Inici_en_CSS/Estils_de_text ---

{{ CSSTutorialTOC() }}

diff --git a/files/ca/conflicting/learn/css/styling_text/styling_lists/index.html b/files/ca/conflicting/learn/css/styling_text/styling_lists/index.html index a6bd0d31a1..7968e26f8b 100644 --- a/files/ca/conflicting/learn/css/styling_text/styling_lists/index.html +++ b/files/ca/conflicting/learn/css/styling_text/styling_lists/index.html @@ -1,10 +1,10 @@ --- title: Llistes -slug: Web/Guide/CSS/Inici_en_CSS/Llistes +slug: conflicting/Learn/CSS/Styling_text/Styling_lists tags: - Beginner - CSS - - 'CSS:Getting_Started' + - CSS:Getting_Started - Example - Guide - Intermediate @@ -13,6 +13,7 @@ tags: - Web translation_of: Learn/CSS/Styling_text/Styling_lists translation_of_original: Web/Guide/CSS/Getting_started/Lists +original_slug: Web/Guide/CSS/Inici_en_CSS/Llistes ---

{{ CSSTutorialTOC() }}

diff --git a/files/ca/conflicting/web/guide/index.html b/files/ca/conflicting/web/guide/index.html index ba6fb934f0..4debdf0059 100644 --- a/files/ca/conflicting/web/guide/index.html +++ b/files/ca/conflicting/web/guide/index.html @@ -1,12 +1,13 @@ --- title: Desenvolupament web -slug: Web_Development +slug: conflicting/Web/Guide tags: - NeedsTranslation - TopicStub - Web Development translation_of: Web/Guide translation_of_original: Web_Development +original_slug: Web_Development ---

El desenvolupament web comprèn tots els aspectes de construir un portal o aplicació web.

Aprèn a crear qualsevol cosa des d'una simple web fins a una web complexa i altament interactiva emprant les darreres tecnologies web  fullejant els articles que et mostrem aquí.

diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/boolean/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/boolean/index.html index e0845eb102..1f032b041e 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/boolean/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/boolean/index.html @@ -1,8 +1,9 @@ --- title: Boolean.prototype -slug: Web/JavaScript/Referencia/Objectes_globals/Boolean/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Boolean translation_of: Web/JavaScript/Reference/Global_Objects/Boolean translation_of_original: Web/JavaScript/Reference/Global_Objects/Boolean/prototype +original_slug: Web/JavaScript/Referencia/Objectes_globals/Boolean/prototype ---
{{JSRef("Global_Objects", "Boolean")}}
diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/dataview/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/dataview/index.html index ebd6cbe729..7f75592b39 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/dataview/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/dataview/index.html @@ -1,8 +1,9 @@ --- title: DataView.prototype -slug: Web/JavaScript/Reference/Global_Objects/DataView/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/DataView translation_of: Web/JavaScript/Reference/Global_Objects/DataView translation_of_original: Web/JavaScript/Reference/Global_Objects/DataView/prototype +original_slug: Web/JavaScript/Reference/Global_Objects/DataView/prototype ---
{{JSRef}}
diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/date/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/date/index.html index 91e2dff38f..e9e2bb9c7d 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/date/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/date/index.html @@ -1,8 +1,9 @@ --- title: Date.prototype -slug: Web/JavaScript/Referencia/Objectes_globals/Date/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Date translation_of: Web/JavaScript/Reference/Global_Objects/Date translation_of_original: Web/JavaScript/Reference/Global_Objects/Date/prototype +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/prototype ---
{{JSRef("Global_Objects", "Date")}}
diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/error/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/error/index.html index 53e22669e9..96d7ea961e 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/error/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/error/index.html @@ -1,8 +1,9 @@ --- title: Error.prototype -slug: Web/JavaScript/Referencia/Objectes_globals/Error/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Error translation_of: Web/JavaScript/Reference/Global_Objects/Error translation_of_original: Web/JavaScript/Reference/Global_Objects/Error/prototype +original_slug: Web/JavaScript/Referencia/Objectes_globals/Error/prototype ---
{{JSRef("Global_Objects", "Error", "EvalError,InternalError,RangeError,ReferenceError,SyntaxError,TypeError,URIError")}}
diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/evalerror/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/evalerror/index.html index 5f83d25a6f..e058929546 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/evalerror/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/evalerror/index.html @@ -1,8 +1,9 @@ --- title: EvalError.prototype -slug: Web/JavaScript/Reference/Global_Objects/EvalError/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/EvalError translation_of: Web/JavaScript/Reference/Global_Objects/EvalError translation_of_original: Web/JavaScript/Reference/Global_Objects/EvalError/prototype +original_slug: Web/JavaScript/Reference/Global_Objects/EvalError/prototype ---
{{JSRef}}
diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/map/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/map/index.html index 3a7508f042..bcab0afb8a 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/map/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/map/index.html @@ -1,8 +1,9 @@ --- title: Map.prototype -slug: Web/JavaScript/Referencia/Objectes_globals/Map/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Map translation_of: Web/JavaScript/Reference/Global_Objects/Map translation_of_original: Web/JavaScript/Reference/Global_Objects/Map/prototype +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map/prototype ---
{{JSRef}}
diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/number/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/number/index.html index ae733e56ec..d5c2f282cd 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/number/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/number/index.html @@ -1,8 +1,9 @@ --- title: Number.prototype -slug: Web/JavaScript/Referencia/Objectes_globals/Number/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Number translation_of: Web/JavaScript/Reference/Global_Objects/Number translation_of_original: Web/JavaScript/Reference/Global_Objects/Number/prototype +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/prototype ---
{{JSRef}}
diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/object/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/object/index.html index 9451ccfefe..a5bfe248c9 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/object/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/object/index.html @@ -1,8 +1,9 @@ --- title: Object.prototype -slug: Web/JavaScript/Reference/Global_Objects/Object/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Object translation_of: Web/JavaScript/Reference/Global_Objects/Object translation_of_original: Web/JavaScript/Reference/Global_Objects/Object/prototype +original_slug: Web/JavaScript/Reference/Global_Objects/Object/prototype ---
{{JSRef}}
diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/set/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/set/index.html index 9d6f6e90ee..d4e6516f15 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/set/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/set/index.html @@ -1,8 +1,9 @@ --- title: Set.prototype -slug: Web/JavaScript/Referencia/Objectes_globals/Set/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/Set translation_of: Web/JavaScript/Reference/Global_Objects/Set translation_of_original: Web/JavaScript/Reference/Global_Objects/Set/prototype +original_slug: Web/JavaScript/Referencia/Objectes_globals/Set/prototype ---
{{JSRef}}
diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/syntaxerror/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/syntaxerror/index.html index 35aea642bd..e2641c4057 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/syntaxerror/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/syntaxerror/index.html @@ -1,8 +1,9 @@ --- title: SyntaxError.prototype -slug: Web/JavaScript/Referencia/Objectes_globals/SyntaxError/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/SyntaxError translation_of: Web/JavaScript/Reference/Global_Objects/SyntaxError translation_of_original: Web/JavaScript/Reference/Global_Objects/SyntaxError/prototype +original_slug: Web/JavaScript/Referencia/Objectes_globals/SyntaxError/prototype ---
{{JSRef}}
diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/weakmap/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/weakmap/index.html index 40c3e72ff6..45313877ce 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/weakmap/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/weakmap/index.html @@ -1,8 +1,9 @@ --- title: WeakMap.prototype -slug: Web/JavaScript/Reference/Global_Objects/WeakMap/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/WeakMap translation_of: Web/JavaScript/Reference/Global_Objects/WeakMap translation_of_original: Web/JavaScript/Reference/Global_Objects/WeakMap/prototype +original_slug: Web/JavaScript/Reference/Global_Objects/WeakMap/prototype ---
{{JSRef}}
diff --git a/files/ca/conflicting/web/javascript/reference/global_objects/weakset/index.html b/files/ca/conflicting/web/javascript/reference/global_objects/weakset/index.html index 4e86935904..f602febbc9 100644 --- a/files/ca/conflicting/web/javascript/reference/global_objects/weakset/index.html +++ b/files/ca/conflicting/web/javascript/reference/global_objects/weakset/index.html @@ -1,8 +1,9 @@ --- title: WeakSet.prototype -slug: Web/JavaScript/Reference/Global_Objects/WeakSet/prototype +slug: conflicting/Web/JavaScript/Reference/Global_Objects/WeakSet translation_of: Web/JavaScript/Reference/Global_Objects/WeakSet translation_of_original: Web/JavaScript/Reference/Global_Objects/WeakSet/prototype +original_slug: Web/JavaScript/Reference/Global_Objects/WeakSet/prototype ---
{{JSRef}}
diff --git a/files/ca/conflicting/web/javascript/reference/operators/index.html b/files/ca/conflicting/web/javascript/reference/operators/index.html index 9b6816c2d6..5f5221c244 100644 --- a/files/ca/conflicting/web/javascript/reference/operators/index.html +++ b/files/ca/conflicting/web/javascript/reference/operators/index.html @@ -1,8 +1,9 @@ --- title: Operadors aritmètics -slug: Web/JavaScript/Referencia/Operadors/Arithmetic_Operators +slug: conflicting/Web/JavaScript/Reference/Operators translation_of: Web/JavaScript/Reference/Operators translation_of_original: Web/JavaScript/Reference/Operators/Arithmetic_Operators +original_slug: Web/JavaScript/Referencia/Operadors/Arithmetic_Operators ---
{{jsSidebar("Operators")}}
diff --git a/files/ca/conflicting/web/javascript/reference/operators_94c03c413a71df1ccff4c3ede275360c/index.html b/files/ca/conflicting/web/javascript/reference/operators_94c03c413a71df1ccff4c3ede275360c/index.html index f7fbae7b47..73733f5188 100644 --- a/files/ca/conflicting/web/javascript/reference/operators_94c03c413a71df1ccff4c3ede275360c/index.html +++ b/files/ca/conflicting/web/javascript/reference/operators_94c03c413a71df1ccff4c3ede275360c/index.html @@ -1,8 +1,10 @@ --- title: Operadors de bits -slug: Web/JavaScript/Referencia/Operadors/Bitwise_Operators +slug: >- + conflicting/Web/JavaScript/Reference/Operators_94c03c413a71df1ccff4c3ede275360c translation_of: Web/JavaScript/Reference/Operators translation_of_original: Web/JavaScript/Reference/Operators/Bitwise_Operators +original_slug: Web/JavaScript/Referencia/Operadors/Bitwise_Operators ---
{{jsSidebar("Operators")}}
diff --git a/files/ca/conflicting/web/javascript/reference/operators_af596841c6a3650ee514088f0e310901/index.html b/files/ca/conflicting/web/javascript/reference/operators_af596841c6a3650ee514088f0e310901/index.html index 591e1fbc4f..3dc7af9899 100644 --- a/files/ca/conflicting/web/javascript/reference/operators_af596841c6a3650ee514088f0e310901/index.html +++ b/files/ca/conflicting/web/javascript/reference/operators_af596841c6a3650ee514088f0e310901/index.html @@ -1,8 +1,10 @@ --- title: Operadors Lògics -slug: Web/JavaScript/Referencia/Operadors/Logical_Operators +slug: >- + conflicting/Web/JavaScript/Reference/Operators_af596841c6a3650ee514088f0e310901 translation_of: Web/JavaScript/Reference/Operators translation_of_original: Web/JavaScript/Reference/Operators/Logical_Operators +original_slug: Web/JavaScript/Referencia/Operadors/Logical_Operators ---
{{jsSidebar("Operators")}}
diff --git a/files/ca/glossary/attribute/index.html b/files/ca/glossary/attribute/index.html index 8cb4795ca4..51b8de1e1c 100644 --- a/files/ca/glossary/attribute/index.html +++ b/files/ca/glossary/attribute/index.html @@ -1,11 +1,12 @@ --- title: Atribut -slug: Glossary/Atribut +slug: Glossary/Attribute tags: - CodingScripting - Glossary - HTML translation_of: Glossary/Attribute +original_slug: Glossary/Atribut ---

Un atribut estén una {{Glossary("etiqueta")}}, canviant el comportament de l'etiqueta o proporcionant metadades. Un atribut té sempre la forma nom = valor (donant l'identificador de l'atribut i el valor associat a l'atribut).

diff --git a/files/ca/glossary/browser/index.html b/files/ca/glossary/browser/index.html index c3280d723b..a9780ffbf2 100644 --- a/files/ca/glossary/browser/index.html +++ b/files/ca/glossary/browser/index.html @@ -1,10 +1,11 @@ --- title: Navegador -slug: Glossary/Navegador +slug: Glossary/Browser tags: - Glossary - Navigation translation_of: Glossary/Browser +original_slug: Glossary/Navegador ---

Un navegador web és un programa que recupera i mostra les pàgines de la {{Glossary("World Wide Web","Web")}}, i permet als usuaris accedir a més pàgines a través {{Glossary("hyperlink","hipervincles")}}.

diff --git a/files/ca/glossary/character/index.html b/files/ca/glossary/character/index.html index 4c887673a2..957c03a534 100644 --- a/files/ca/glossary/character/index.html +++ b/files/ca/glossary/character/index.html @@ -1,11 +1,12 @@ --- title: Caràcter -slug: Glossary/Caràcter +slug: Glossary/Character tags: - CodingScripting - Glossary - strings translation_of: Glossary/Character +original_slug: Glossary/Caràcter ---

Un caràcter és o bé un símbol (lletres, nombres, puntuació) o "control" no imprès (per exemple, retorn de carro o guió suau). {{Glossary("UTF-8")}} és el conjunt de caràcters més comuna i inclou els grafemes dels idiomes humans més populars.

diff --git a/files/ca/glossary/character_encoding/index.html b/files/ca/glossary/character_encoding/index.html index 40179b5e89..15caec7d33 100644 --- a/files/ca/glossary/character_encoding/index.html +++ b/files/ca/glossary/character_encoding/index.html @@ -1,10 +1,11 @@ --- title: Codificació de caràcters -slug: Glossary/Codificació_de_caràcters +slug: Glossary/character_encoding tags: - Composing - Glossary translation_of: Glossary/character_encoding +original_slug: Glossary/Codificació_de_caràcters ---

La codificació de caràcters proporciona un sistema de codificació dels caràcters específics en els diferents idiomes, per permetre que tots ells existeixen i poguin ser manejats consistentment en un sistema informàtic o entorn de programació.

diff --git a/files/ca/glossary/function/index.html b/files/ca/glossary/function/index.html index d022b3196b..fa534958eb 100644 --- a/files/ca/glossary/function/index.html +++ b/files/ca/glossary/function/index.html @@ -1,6 +1,6 @@ --- title: Funció -slug: Glossary/Funció +slug: Glossary/Function tags: - CodingScripting - Glossary @@ -8,6 +8,7 @@ tags: - Immediately Invoked Function Expressions (IIFE) - JavaScript translation_of: Glossary/Function +original_slug: Glossary/Funció ---

Una funció és un fragment de codi que pot ser cridat per altres codis o per si mateix, o una {{Glossary("variable")}} que fa referència a la funció. Quan una funció es cridada, es passan {{Glossary("argument", "arguments")}} a la funció com a entrada, i opcionalment la funció pot retornar una sortida. Una funció de {{glossary("JavaScript")}} és també un {{glossary("objecte")}}.

diff --git a/files/ca/glossary/ip_address/index.html b/files/ca/glossary/ip_address/index.html index 8e855d55ac..67b49ef99f 100644 --- a/files/ca/glossary/ip_address/index.html +++ b/files/ca/glossary/ip_address/index.html @@ -1,12 +1,13 @@ --- title: adreça IP (IP address) -slug: Glossary/adreça_IP +slug: Glossary/IP_Address tags: - Beginner - Glossary - Infrastructure - Web translation_of: Glossary/IP_Address +original_slug: Glossary/adreça_IP ---

Una adreça IP (IP address) és un nombre assignat a cada dispositiu connectat a una xarxa que utilitza el protocol d'Internet.

diff --git a/files/ca/glossary/method/index.html b/files/ca/glossary/method/index.html index 65838733f8..da2077d87a 100644 --- a/files/ca/glossary/method/index.html +++ b/files/ca/glossary/method/index.html @@ -1,11 +1,12 @@ --- title: Mètode -slug: Glossary/Mètode +slug: Glossary/Method tags: - CodingScripting - Glossary - JavaScript translation_of: Glossary/Method +original_slug: Glossary/Mètode ---

Un mètode és una {{glossary("funció")}} que és {{glossary("propietat")}} d'un {{glossary("objecte")}}. Existeixen dos tipus de mètodes: Mètode Instància que estan incorporades en les tasques dutes a terme per una instància d'objecte, o Mètodes Estàtics que són tasques que es poden realitzar sense necessitat d'una instància d'objecte.

diff --git a/files/ca/glossary/object/index.html b/files/ca/glossary/object/index.html index 2688a42fed..09d2e7b145 100644 --- a/files/ca/glossary/object/index.html +++ b/files/ca/glossary/object/index.html @@ -1,12 +1,13 @@ --- title: Objecte -slug: Glossary/Objecte +slug: Glossary/Object tags: - CodingScripting - Glossary - Intro - Object translation_of: Glossary/Object +original_slug: Glossary/Objecte ---

Objecte, es refereix a una estructura de dades que conté dades i instruccions per treballar amb les dades. Els objectes a vegades es refereixen a les coses del món real, per exemple, un objecte cotxe o mapa en un joc de carreres. {{glossary("JavaScript")}}, Java, C ++, Python i Ruby són exemples de llenguatges de {{glossary("OOP", "programació orientada a objectes")}}.

diff --git a/files/ca/glossary/object_reference/index.html b/files/ca/glossary/object_reference/index.html index 1eca91862d..6cb976de0e 100644 --- a/files/ca/glossary/object_reference/index.html +++ b/files/ca/glossary/object_reference/index.html @@ -1,10 +1,11 @@ --- title: Referències a objectes -slug: Glossary/referències_a_objectes +slug: Glossary/Object_reference tags: - CodingScripting - Glossary translation_of: Glossary/Object_reference +original_slug: Glossary/referències_a_objectes ---

Un enllaç a un {{glossary("objecte")}}. Les referències a objectes poden usar-se exactament igual que els objectes vinculats.

diff --git a/files/ca/glossary/primitive/index.html b/files/ca/glossary/primitive/index.html index c0e1cd1ff3..3916313c36 100644 --- a/files/ca/glossary/primitive/index.html +++ b/files/ca/glossary/primitive/index.html @@ -1,11 +1,12 @@ --- title: Primitiu -slug: Glossary/Primitiu +slug: Glossary/Primitive tags: - CodingScripting - Glossary - JavaScript translation_of: Glossary/Primitive +original_slug: Glossary/Primitiu ---

Un primitiu (valor primitiu, tipus de dades primitiu) és una dada que no és un {{Glossary("objecte")}} i no té {{glossary("method","mètodes")}}. En {{Glossary("JavaScript")}}, hi ha 6 tipus de dades primitius: {{Glossary("string")}}, {{Glossary("number")}}, {{Glossary("boolean")}}, {{Glossary("null")}}, {{Glossary("undefined")}}, {{Glossary("symbol")}} (nou en {{Glossary("ECMAScript")}} 2015).

diff --git a/files/ca/glossary/property/index.html b/files/ca/glossary/property/index.html index a6b0970dd6..abe7a9ec32 100644 --- a/files/ca/glossary/property/index.html +++ b/files/ca/glossary/property/index.html @@ -1,10 +1,11 @@ --- title: Propietat -slug: Glossary/Propietat +slug: Glossary/property tags: - Disambiguation - Glossary translation_of: Glossary/property +original_slug: Glossary/Propietat ---

El terme propietat pot tenir diversos significats, depenent del context. Es pot fer referència a:

diff --git a/files/ca/glossary/scope/index.html b/files/ca/glossary/scope/index.html index 10707ada0b..a77a178a5c 100644 --- a/files/ca/glossary/scope/index.html +++ b/files/ca/glossary/scope/index.html @@ -1,10 +1,11 @@ --- title: Àmbit -slug: Glossary/Àmbit +slug: Glossary/Scope tags: - CodingScripting - Glossary translation_of: Glossary/Scope +original_slug: Glossary/Àmbit ---

El context actual d'{{glossary("execute","execució")}}. El context en el qual {{glossary("value","valors")}} i expressions són "visibles", o poden ser referenciats. Si una {{glossary("variable")}} o una altra expressió no és "en l'àmbit actual", llavors no està disponible per al seu ús. Els àmbits també es poden superposar en una jerarquia, de manera que els àmbits fills tinguin accés als àmbits dels pares, però no viceversa.

diff --git a/files/ca/glossary/server/index.html b/files/ca/glossary/server/index.html index cda9e7c3ea..c778694214 100644 --- a/files/ca/glossary/server/index.html +++ b/files/ca/glossary/server/index.html @@ -1,6 +1,6 @@ --- title: Servidor -slug: Glossary/Servidor +slug: Glossary/Server tags: - Glossary - Infrastructure @@ -8,6 +8,7 @@ tags: - Protocol - Server translation_of: Glossary/Server +original_slug: Glossary/Servidor ---

Un servidor de maquinari és un equip compartit en una xarxa que proporciona serveis a clients. Un servidor de programari és un programa que proporciona serveis als programes de client.

diff --git a/files/ca/glossary/speculative_parsing/index.html b/files/ca/glossary/speculative_parsing/index.html index df48dec4e3..97d763bd02 100644 --- a/files/ca/glossary/speculative_parsing/index.html +++ b/files/ca/glossary/speculative_parsing/index.html @@ -1,7 +1,8 @@ --- title: Optimizing your pages for speculative parsing -slug: Web/HTML/Optimizing_your_pages_for_speculative_parsing +slug: Glossary/speculative_parsing translation_of: Glossary/speculative_parsing +original_slug: Web/HTML/Optimizing_your_pages_for_speculative_parsing ---

Tradicionalment en els navegadors, el analitzador sintàctic d'HTML s'executa en el fil principal i s'ha bloquejat després d'una etiqueta </script> fins que l'script s'ha recuperat de la xarxa i s'executat. El analitzador sintàctic d'HTML en Firefox 4 i versions posteriors dóna suport a l'anàlisi especulativa fora del fil principal. A continuació s'analitza mentre que els scripts estan sent descarregats i s'executen. Com en Firefox 3.5 i 3.6, l'analitzador sintàctic d'HTML comença càrregues especulatives per als scripts, fulles d'estil i imatges que troba per davant en la seqüència. No obstant això, en Firefox 4 i posterior l'analitzador sintàctic d'HTML també executa l'algorisme de construcció de l'arbre HTML especulativament. L'avantatge és que quan una especulació èxit, no hi ha necessitat de reanàlisi de la part de l'arxiu d'entrada ja que va ser analitzat a la recerca de scripts, fulls d'estil i imatges. L'inconvenient és que hi ha més feina perduda quan l'especulació falla.

diff --git a/files/ca/glossary/tag/index.html b/files/ca/glossary/tag/index.html index e52b3f29a2..6b3860391e 100644 --- a/files/ca/glossary/tag/index.html +++ b/files/ca/glossary/tag/index.html @@ -1,12 +1,13 @@ --- title: Etiqueta -slug: Glossary/Etiqueta +slug: Glossary/Tag tags: - CodingScripting - Glossary - HTML - Intro translation_of: Glossary/Tag +original_slug: Glossary/Etiqueta ---

En {{Glossary("HTML")}} una etiqueta s'utilitza per a la creació d'un {{Glossary("element")}}. El nom d'un element HTML és el nom usat en parèntesis angulars, com <p> per al paràgraf. Recordeu que el nom de l'etiqueta final és precedit per un caràcter de barra, "</p>", i que en els elements buits l'etiqueta final no és necessària ni permesa. Si els atributs no s'esmenten, els valors per omissió s'utilitzen en cada cas.

diff --git a/files/ca/glossary/value/index.html b/files/ca/glossary/value/index.html index 972fd4303d..352c8c4be0 100644 --- a/files/ca/glossary/value/index.html +++ b/files/ca/glossary/value/index.html @@ -1,11 +1,12 @@ --- title: Valor -slug: Glossary/Valor +slug: Glossary/Value tags: - CodingScripting - Glossary - NeedsContent translation_of: Glossary/Value +original_slug: Glossary/Valor ---

En el context de les dades o un {{Glossary("Wrapper","contenidor")}} d'objectes al voltant d'aquestes dades, el valor és el {{Glossary("Primitive", "valor primitiu")}} que conté el contenidor d'objectes. En el context d'una {{Glossary("Variable","variable")}} or {{Glossary("Property","propietat")}}, el valor pot ser una primitiva o una {{Glossary("Object reference","referència d'objecte")}}.

diff --git a/files/ca/learn/accessibility/what_is_accessibility/index.html b/files/ca/learn/accessibility/what_is_accessibility/index.html index 6d8891a20c..5978594345 100644 --- a/files/ca/learn/accessibility/what_is_accessibility/index.html +++ b/files/ca/learn/accessibility/what_is_accessibility/index.html @@ -1,7 +1,8 @@ --- title: Què és l'accessibilitat? -slug: Learn/Accessibility/Que_es_accessibilitat +slug: Learn/Accessibility/What_is_accessibility translation_of: Learn/Accessibility/What_is_accessibility +original_slug: Learn/Accessibility/Que_es_accessibilitat ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/building_blocks/a_cool_looking_box/index.html b/files/ca/learn/css/building_blocks/a_cool_looking_box/index.html index 3a4df8a2b2..4a8e050221 100644 --- a/files/ca/learn/css/building_blocks/a_cool_looking_box/index.html +++ b/files/ca/learn/css/building_blocks/a_cool_looking_box/index.html @@ -1,6 +1,6 @@ --- title: Una caixa d'aspecte interessant -slug: Learn/CSS/Caixes_estil/Caixa_aspecte_interessant +slug: Learn/CSS/Building_blocks/A_cool_looking_box tags: - Assessment - Beginner @@ -12,6 +12,7 @@ tags: - box model - effects translation_of: Learn/CSS/Building_blocks/A_cool_looking_box +original_slug: Learn/CSS/Caixes_estil/Caixa_aspecte_interessant ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/building_blocks/backgrounds_and_borders/index.html b/files/ca/learn/css/building_blocks/backgrounds_and_borders/index.html index 2e2ce4727c..71da89b786 100644 --- a/files/ca/learn/css/building_blocks/backgrounds_and_borders/index.html +++ b/files/ca/learn/css/building_blocks/backgrounds_and_borders/index.html @@ -1,7 +1,8 @@ --- title: Fons i vores -slug: Learn/CSS/Building_blocks/Fons_i_vores +slug: Learn/CSS/Building_blocks/Backgrounds_and_borders translation_of: Learn/CSS/Building_blocks/Backgrounds_and_borders +original_slug: Learn/CSS/Building_blocks/Fons_i_vores ---
{{LearnSidebar}}{{PreviousMenuNext("Learn/CSS/Building_blocks/The_box_model", "Learn/CSS/Building_blocks/Handling_different_text_directions", "Learn/CSS/Building_blocks")}}
diff --git a/files/ca/learn/css/building_blocks/cascade_and_inheritance/index.html b/files/ca/learn/css/building_blocks/cascade_and_inheritance/index.html index 09a5e368eb..b99c93e29e 100644 --- a/files/ca/learn/css/building_blocks/cascade_and_inheritance/index.html +++ b/files/ca/learn/css/building_blocks/cascade_and_inheritance/index.html @@ -1,7 +1,8 @@ --- title: Cascada i herència -slug: Learn/CSS/Building_blocks/Cascada_i_herència +slug: Learn/CSS/Building_blocks/Cascade_and_inheritance translation_of: Learn/CSS/Building_blocks/Cascade_and_inheritance +original_slug: Learn/CSS/Building_blocks/Cascada_i_herència ---
{{LearnSidebar}}{{NextMenu("Learn/CSS/Building_blocks/Selectors", "Learn/CSS/Building_blocks")}}
diff --git a/files/ca/learn/css/building_blocks/creating_fancy_letterheaded_paper/index.html b/files/ca/learn/css/building_blocks/creating_fancy_letterheaded_paper/index.html index 2623d6d0dd..bf71948ffb 100644 --- a/files/ca/learn/css/building_blocks/creating_fancy_letterheaded_paper/index.html +++ b/files/ca/learn/css/building_blocks/creating_fancy_letterheaded_paper/index.html @@ -1,6 +1,6 @@ --- title: Creació d'una carta amb encapçalat de fantasia -slug: Learn/CSS/Caixes_estil/Creació_carta +slug: Learn/CSS/Building_blocks/Creating_fancy_letterheaded_paper tags: - Assessment - Background @@ -14,6 +14,7 @@ tags: - letterheaded - paper translation_of: Learn/CSS/Building_blocks/Creating_fancy_letterheaded_paper +original_slug: Learn/CSS/Caixes_estil/Creació_carta ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/building_blocks/debugging_css/index.html b/files/ca/learn/css/building_blocks/debugging_css/index.html index 273468969e..45bdbe5587 100644 --- a/files/ca/learn/css/building_blocks/debugging_css/index.html +++ b/files/ca/learn/css/building_blocks/debugging_css/index.html @@ -1,7 +1,8 @@ --- title: Depurar el CSS -slug: Learn/CSS/Building_blocks/Depurar_el_CSS +slug: Learn/CSS/Building_blocks/Debugging_CSS translation_of: Learn/CSS/Building_blocks/Debugging_CSS +original_slug: Learn/CSS/Building_blocks/Depurar_el_CSS ---
{{LearnSidebar}}{{PreviousMenuNext("Learn/CSS/Building_blocks/Styling_tables", "Learn/CSS/Building_blocks/Organizing", "Learn/CSS/Building_blocks")}}
diff --git a/files/ca/learn/css/building_blocks/fundamental_css_comprehension/index.html b/files/ca/learn/css/building_blocks/fundamental_css_comprehension/index.html index 34a654269a..ff288a91bb 100644 --- a/files/ca/learn/css/building_blocks/fundamental_css_comprehension/index.html +++ b/files/ca/learn/css/building_blocks/fundamental_css_comprehension/index.html @@ -1,6 +1,6 @@ --- title: Comprensió CSS fonamental -slug: Learn/CSS/Introducció_a_CSS/Comprensió_CSS_fonamental +slug: Learn/CSS/Building_blocks/Fundamental_CSS_comprehension tags: - Assessment - Beginner @@ -13,6 +13,7 @@ tags: - comments - rules translation_of: Learn/CSS/Building_blocks/Fundamental_CSS_comprehension +original_slug: Learn/CSS/Introducció_a_CSS/Comprensió_CSS_fonamental ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/building_blocks/overflowing_content/index.html b/files/ca/learn/css/building_blocks/overflowing_content/index.html index 2ee0dc6129..8f5b6e641d 100644 --- a/files/ca/learn/css/building_blocks/overflowing_content/index.html +++ b/files/ca/learn/css/building_blocks/overflowing_content/index.html @@ -1,7 +1,8 @@ --- title: Desbordament de contingut -slug: Learn/CSS/Building_blocks/Desbordament_de_contingut +slug: Learn/CSS/Building_blocks/Overflowing_content translation_of: Learn/CSS/Building_blocks/Overflowing_content +original_slug: Learn/CSS/Building_blocks/Desbordament_de_contingut ---
{{LearnSidebar}}{{PreviousMenuNext("Learn/CSS/Building_blocks/Handling_different_text_directions", "Learn/CSS/Building_blocks/Values_and_units", "Learn/CSS/Building_blocks")}}
diff --git a/files/ca/learn/css/building_blocks/selectors/attribute_selectors/index.html b/files/ca/learn/css/building_blocks/selectors/attribute_selectors/index.html index 6ab61828f8..2039eda428 100644 --- a/files/ca/learn/css/building_blocks/selectors/attribute_selectors/index.html +++ b/files/ca/learn/css/building_blocks/selectors/attribute_selectors/index.html @@ -1,7 +1,8 @@ --- title: Selectors d'atribut -slug: Learn/CSS/Building_blocks/Selectors_CSS/Selectors_atribut +slug: Learn/CSS/Building_blocks/Selectors/Attribute_selectors translation_of: Learn/CSS/Building_blocks/Selectors/Attribute_selectors +original_slug: Learn/CSS/Building_blocks/Selectors_CSS/Selectors_atribut ---

{{LearnSidebar}}{{PreviousMenuNext("Learn/CSS/Building_blocks/Selectors/Type_Class_and_ID_Selectors", "Learn/CSS/Building_blocks/Selectors/Pseudo-classes_and_pseudo-elements", "Learn/CSS/Building_blocks")}}

diff --git a/files/ca/learn/css/building_blocks/selectors/combinators/index.html b/files/ca/learn/css/building_blocks/selectors/combinators/index.html index 175379f986..1806678d4a 100644 --- a/files/ca/learn/css/building_blocks/selectors/combinators/index.html +++ b/files/ca/learn/css/building_blocks/selectors/combinators/index.html @@ -1,7 +1,8 @@ --- title: Combinadors -slug: Learn/CSS/Building_blocks/Selectors_CSS/Combinadors +slug: Learn/CSS/Building_blocks/Selectors/Combinators translation_of: Learn/CSS/Building_blocks/Selectors/Combinators +original_slug: Learn/CSS/Building_blocks/Selectors_CSS/Combinadors ---

{{LearnSidebar}}{{PreviousMenuNext("Learn/CSS/Building_blocks/Selectors/Pseudo-classes_and_pseudo-elements", "Learn/CSS/Building_blocks/The_box_model", "Learn/CSS/Building_blocks")}}

diff --git a/files/ca/learn/css/building_blocks/selectors/index.html b/files/ca/learn/css/building_blocks/selectors/index.html index 4bd7b005de..e58dd3cf92 100644 --- a/files/ca/learn/css/building_blocks/selectors/index.html +++ b/files/ca/learn/css/building_blocks/selectors/index.html @@ -1,7 +1,8 @@ --- title: Selectors CSS -slug: Learn/CSS/Building_blocks/Selectors_CSS +slug: Learn/CSS/Building_blocks/Selectors translation_of: Learn/CSS/Building_blocks/Selectors +original_slug: Learn/CSS/Building_blocks/Selectors_CSS ---
{{LearnSidebar}}{{PreviousMenuNext("Learn/CSS/Building_blocks/Cascade_and_inheritance", "Learn/CSS/Building_blocks/Selectors/Type_Class_and_ID_Selectors", "Learn/CSS/Building_blocks")}}
diff --git a/files/ca/learn/css/building_blocks/selectors/pseudo-classes_and_pseudo-elements/index.html b/files/ca/learn/css/building_blocks/selectors/pseudo-classes_and_pseudo-elements/index.html index b28cb4873a..b9ecc0a3be 100644 --- a/files/ca/learn/css/building_blocks/selectors/pseudo-classes_and_pseudo-elements/index.html +++ b/files/ca/learn/css/building_blocks/selectors/pseudo-classes_and_pseudo-elements/index.html @@ -1,7 +1,8 @@ --- title: Pseudoclasses i pseudoelements -slug: Learn/CSS/Building_blocks/Selectors_CSS/Pseudo-classes_and_pseudo-elements +slug: Learn/CSS/Building_blocks/Selectors/Pseudo-classes_and_pseudo-elements translation_of: Learn/CSS/Building_blocks/Selectors/Pseudo-classes_and_pseudo-elements +original_slug: Learn/CSS/Building_blocks/Selectors_CSS/Pseudo-classes_and_pseudo-elements ---

{{LearnSidebar}}{{PreviousMenuNext("Learn/CSS/Building_blocks/Selectors/Attribute_selectors", "Learn/CSS/Building_blocks/Selectors/Combinators", "Learn/CSS/Building_blocks")}}

diff --git a/files/ca/learn/css/building_blocks/selectors/type_class_and_id_selectors/index.html b/files/ca/learn/css/building_blocks/selectors/type_class_and_id_selectors/index.html index 2cdbdc244a..8eaf6cf50e 100644 --- a/files/ca/learn/css/building_blocks/selectors/type_class_and_id_selectors/index.html +++ b/files/ca/learn/css/building_blocks/selectors/type_class_and_id_selectors/index.html @@ -1,7 +1,8 @@ --- -title: 'Selectors de tipus, classe i ID' -slug: Learn/CSS/Building_blocks/Selectors_CSS/Selectors_de_tipus_classe_i_ID +title: Selectors de tipus, classe i ID +slug: Learn/CSS/Building_blocks/Selectors/Type_Class_and_ID_Selectors translation_of: Learn/CSS/Building_blocks/Selectors/Type_Class_and_ID_Selectors +original_slug: Learn/CSS/Building_blocks/Selectors_CSS/Selectors_de_tipus_classe_i_ID ---

{{LearnSidebar}}{{PreviousMenuNext("Learn/CSS/Building_blocks/Selectors", "Learn/CSS/Building_blocks/Selectors/Attribute_selectors", "Learn/CSS/Building_blocks")}}

diff --git a/files/ca/learn/css/building_blocks/sizing_items_in_css/index.html b/files/ca/learn/css/building_blocks/sizing_items_in_css/index.html index 5ff34b8d93..36a1ed3a18 100644 --- a/files/ca/learn/css/building_blocks/sizing_items_in_css/index.html +++ b/files/ca/learn/css/building_blocks/sizing_items_in_css/index.html @@ -1,7 +1,8 @@ --- title: Dimensionar elements en CSS -slug: Learn/CSS/Building_blocks/Dimensionar_elements_en_CSS +slug: Learn/CSS/Building_blocks/Sizing_items_in_CSS translation_of: Learn/CSS/Building_blocks/Sizing_items_in_CSS +original_slug: Learn/CSS/Building_blocks/Dimensionar_elements_en_CSS ---
{{LearnSidebar}}{{PreviousMenuNext("Learn/CSS/Building_blocks/Values_and_units", "Learn/CSS/Building_blocks/Images_media_form_elements", "Learn/CSS/Building_blocks")}}
diff --git a/files/ca/learn/css/building_blocks/values_and_units/index.html b/files/ca/learn/css/building_blocks/values_and_units/index.html index b754bd27ac..12ec749f01 100644 --- a/files/ca/learn/css/building_blocks/values_and_units/index.html +++ b/files/ca/learn/css/building_blocks/values_and_units/index.html @@ -1,7 +1,8 @@ --- title: Valors i unitats CSS -slug: Learn/CSS/Building_blocks/Valors_i_unitats_CSS +slug: Learn/CSS/Building_blocks/Values_and_units translation_of: Learn/CSS/Building_blocks/Values_and_units +original_slug: Learn/CSS/Building_blocks/Valors_i_unitats_CSS ---
{{LearnSidebar}}{{PreviousMenuNext("Learn/CSS/Building_blocks/Overflowing_content", "Learn/CSS/Building_blocks/Sizing_items_in_CSS", "Learn/CSS/Building_blocks")}}
diff --git a/files/ca/learn/css/css_layout/flexbox/index.html b/files/ca/learn/css/css_layout/flexbox/index.html index 37f31f619b..f16e4bec67 100644 --- a/files/ca/learn/css/css_layout/flexbox/index.html +++ b/files/ca/learn/css/css_layout/flexbox/index.html @@ -1,6 +1,6 @@ --- title: Flexbox -slug: Learn/CSS/Disseny_CSS/Flexbox +slug: Learn/CSS/CSS_layout/Flexbox tags: - Article - Beginner @@ -14,6 +14,7 @@ tags: - Learn - flexbox translation_of: Learn/CSS/CSS_layout/Flexbox +original_slug: Learn/CSS/Disseny_CSS/Flexbox ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/css_layout/floats/index.html b/files/ca/learn/css/css_layout/floats/index.html index 25d2fe01a6..36d5e17da5 100644 --- a/files/ca/learn/css/css_layout/floats/index.html +++ b/files/ca/learn/css/css_layout/floats/index.html @@ -1,6 +1,6 @@ --- title: Flotadors (Floats) -slug: Learn/CSS/Disseny_CSS/Flotadors +slug: Learn/CSS/CSS_layout/Floats tags: - Article - Beginner @@ -13,6 +13,7 @@ tags: - columns - multi-column translation_of: Learn/CSS/CSS_layout/Floats +original_slug: Learn/CSS/Disseny_CSS/Flotadors ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/css_layout/grids/index.html b/files/ca/learn/css/css_layout/grids/index.html index af97c6f989..98cf560583 100644 --- a/files/ca/learn/css/css_layout/grids/index.html +++ b/files/ca/learn/css/css_layout/grids/index.html @@ -1,6 +1,6 @@ --- title: Graelles (Grids) -slug: Learn/CSS/Disseny_CSS/Graelles +slug: Learn/CSS/CSS_layout/Grids tags: - Article - Beginner @@ -16,6 +16,7 @@ tags: - grid framework - grid system translation_of: Learn/CSS/CSS_layout/Grids +original_slug: Learn/CSS/Disseny_CSS/Graelles ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/css_layout/index.html b/files/ca/learn/css/css_layout/index.html index e74e5da0b9..408d33bd80 100644 --- a/files/ca/learn/css/css_layout/index.html +++ b/files/ca/learn/css/css_layout/index.html @@ -1,6 +1,6 @@ --- title: Disseny CSS -slug: Learn/CSS/Disseny_CSS +slug: Learn/CSS/CSS_layout tags: - Beginner - CSS @@ -16,6 +16,7 @@ tags: - flexbox - float translation_of: Learn/CSS/CSS_layout +original_slug: Learn/CSS/Disseny_CSS ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/css_layout/introduction/index.html b/files/ca/learn/css/css_layout/introduction/index.html index 88a924dc00..c14622da8f 100644 --- a/files/ca/learn/css/css_layout/introduction/index.html +++ b/files/ca/learn/css/css_layout/introduction/index.html @@ -1,6 +1,6 @@ --- title: Introducció al disseny CSS -slug: Learn/CSS/Disseny_CSS/Introduccio_disseny_CSS +slug: Learn/CSS/CSS_layout/Introduction tags: - Article - Beginner @@ -15,6 +15,7 @@ tags: - flexbox - flow translation_of: Learn/CSS/CSS_layout/Introduction +original_slug: Learn/CSS/Disseny_CSS/Introduccio_disseny_CSS ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/css_layout/normal_flow/index.html b/files/ca/learn/css/css_layout/normal_flow/index.html index ac44f6a95a..afa52896d8 100644 --- a/files/ca/learn/css/css_layout/normal_flow/index.html +++ b/files/ca/learn/css/css_layout/normal_flow/index.html @@ -1,7 +1,8 @@ --- title: Flux normal -slug: Learn/CSS/Disseny_CSS/Flux_normal +slug: Learn/CSS/CSS_layout/Normal_Flow translation_of: Learn/CSS/CSS_layout/Normal_Flow +original_slug: Learn/CSS/Disseny_CSS/Flux_normal ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/css_layout/positioning/index.html b/files/ca/learn/css/css_layout/positioning/index.html index 213293ff4e..154d8fabac 100644 --- a/files/ca/learn/css/css_layout/positioning/index.html +++ b/files/ca/learn/css/css_layout/positioning/index.html @@ -1,6 +1,6 @@ --- title: Posicionament -slug: Learn/CSS/Disseny_CSS/Posicionament +slug: Learn/CSS/CSS_layout/Positioning tags: - Article - Beginner @@ -13,6 +13,7 @@ tags: - fixed - relative translation_of: Learn/CSS/CSS_layout/Positioning +original_slug: Learn/CSS/Disseny_CSS/Posicionament ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/css_layout/practical_positioning_examples/index.html b/files/ca/learn/css/css_layout/practical_positioning_examples/index.html index dfaac7f63c..036cb5d308 100644 --- a/files/ca/learn/css/css_layout/practical_positioning_examples/index.html +++ b/files/ca/learn/css/css_layout/practical_positioning_examples/index.html @@ -1,6 +1,6 @@ --- title: Exemples pràctics de posicionament -slug: Learn/CSS/Disseny_CSS/Exemples_pràctics_posicionament +slug: Learn/CSS/CSS_layout/Practical_positioning_examples tags: - Article - Beginner @@ -13,6 +13,7 @@ tags: - fixed - relative translation_of: Learn/CSS/CSS_layout/Practical_positioning_examples +original_slug: Learn/CSS/Disseny_CSS/Exemples_pràctics_posicionament ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/css_layout/responsive_design/index.html b/files/ca/learn/css/css_layout/responsive_design/index.html index 5bf909e6e7..b8f0011edd 100644 --- a/files/ca/learn/css/css_layout/responsive_design/index.html +++ b/files/ca/learn/css/css_layout/responsive_design/index.html @@ -1,7 +1,8 @@ --- title: Disseny responsiu -slug: Learn/CSS/Disseny_CSS/Disseny_responsiu +slug: Learn/CSS/CSS_layout/Responsive_Design translation_of: Learn/CSS/CSS_layout/Responsive_Design +original_slug: Learn/CSS/Disseny_CSS/Disseny_responsiu ---
{{learnsidebar}}{{PreviousMenuNext("Learn/CSS/CSS_layout/Multiple-column_Layout", "Learn/CSS/CSS_layout/Media_queries", "Learn/CSS/CSS_layout")}}
diff --git a/files/ca/learn/css/css_layout/supporting_older_browsers/index.html b/files/ca/learn/css/css_layout/supporting_older_browsers/index.html index 5a689b6437..e5ee4a703c 100644 --- a/files/ca/learn/css/css_layout/supporting_older_browsers/index.html +++ b/files/ca/learn/css/css_layout/supporting_older_browsers/index.html @@ -1,7 +1,8 @@ --- title: Suport en navegadors antics -slug: Learn/CSS/Disseny_CSS/Suport_en_navegadors_antics +slug: Learn/CSS/CSS_layout/Supporting_Older_Browsers translation_of: Learn/CSS/CSS_layout/Supporting_Older_Browsers +original_slug: Learn/CSS/Disseny_CSS/Suport_en_navegadors_antics ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/first_steps/getting_started/index.html b/files/ca/learn/css/first_steps/getting_started/index.html index dfc1ae29b3..555dc4f0cd 100644 --- a/files/ca/learn/css/first_steps/getting_started/index.html +++ b/files/ca/learn/css/first_steps/getting_started/index.html @@ -1,7 +1,8 @@ --- title: Com començar amb CSS -slug: Learn/CSS/First_steps/Com_començar_amb_CSS +slug: Learn/CSS/First_steps/Getting_started translation_of: Learn/CSS/First_steps/Getting_started +original_slug: Learn/CSS/First_steps/Com_començar_amb_CSS ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/first_steps/how_css_is_structured/index.html b/files/ca/learn/css/first_steps/how_css_is_structured/index.html index 6c216af68c..afe4804394 100644 --- a/files/ca/learn/css/first_steps/how_css_is_structured/index.html +++ b/files/ca/learn/css/first_steps/how_css_is_structured/index.html @@ -1,7 +1,8 @@ --- title: Com estructurar el CSS -slug: Learn/CSS/First_steps/Com_estructurar_el_CSS +slug: Learn/CSS/First_steps/How_CSS_is_structured translation_of: Learn/CSS/First_steps/How_CSS_is_structured +original_slug: Learn/CSS/First_steps/Com_estructurar_el_CSS ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/first_steps/how_css_works/index.html b/files/ca/learn/css/first_steps/how_css_works/index.html index 9621d2c21c..24727cbdf8 100644 --- a/files/ca/learn/css/first_steps/how_css_works/index.html +++ b/files/ca/learn/css/first_steps/how_css_works/index.html @@ -1,7 +1,8 @@ --- title: Com funciona el CSS -slug: Learn/CSS/First_steps/Com_funciona_el_CSS +slug: Learn/CSS/First_steps/How_CSS_works translation_of: Learn/CSS/First_steps/How_CSS_works +original_slug: Learn/CSS/First_steps/Com_funciona_el_CSS ---

{{LearnSidebar}}
{{PreviousMenuNext("Learn/CSS/First_steps/How_CSS_is_structured", "Learn/CSS/First_steps/Using_your_new_knowledge", "Learn/CSS/First_steps")}}

diff --git a/files/ca/learn/css/first_steps/what_is_css/index.html b/files/ca/learn/css/first_steps/what_is_css/index.html index b158b8e62e..e1817bb73c 100644 --- a/files/ca/learn/css/first_steps/what_is_css/index.html +++ b/files/ca/learn/css/first_steps/what_is_css/index.html @@ -1,7 +1,8 @@ --- title: Què és el CSS? -slug: Learn/CSS/First_steps/Que_es_el_CSS +slug: Learn/CSS/First_steps/What_is_CSS translation_of: Learn/CSS/First_steps/What_is_CSS +original_slug: Learn/CSS/First_steps/Que_es_el_CSS ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/styling_text/fundamentals/index.html b/files/ca/learn/css/styling_text/fundamentals/index.html index e258171ffc..2d8295df54 100644 --- a/files/ca/learn/css/styling_text/fundamentals/index.html +++ b/files/ca/learn/css/styling_text/fundamentals/index.html @@ -1,6 +1,6 @@ --- title: Text fonamental i estil de font -slug: Learn/CSS/Estilitzar_text/Text_fonamental +slug: Learn/CSS/Styling_text/Fundamentals tags: - Article - Beginner @@ -15,6 +15,7 @@ tags: - spacing - weight translation_of: Learn/CSS/Styling_text/Fundamentals +original_slug: Learn/CSS/Estilitzar_text/Text_fonamental ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/styling_text/index.html b/files/ca/learn/css/styling_text/index.html index c815d83297..39ad209939 100644 --- a/files/ca/learn/css/styling_text/index.html +++ b/files/ca/learn/css/styling_text/index.html @@ -1,6 +1,6 @@ --- title: Estilitzar text -slug: Learn/CSS/Estilitzar_text +slug: Learn/CSS/Styling_text tags: - Beginner - CSS @@ -17,6 +17,7 @@ tags: - shadow - web fonts translation_of: Learn/CSS/Styling_text +original_slug: Learn/CSS/Estilitzar_text ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/styling_text/styling_links/index.html b/files/ca/learn/css/styling_text/styling_links/index.html index 448a53289d..9ab78597b2 100644 --- a/files/ca/learn/css/styling_text/styling_links/index.html +++ b/files/ca/learn/css/styling_text/styling_links/index.html @@ -1,7 +1,8 @@ --- title: Aplicar estils a enllaços -slug: Learn/CSS/Estilitzar_text/Estilitzar_enllaços +slug: Learn/CSS/Styling_text/Styling_links translation_of: Learn/CSS/Styling_text/Styling_links +original_slug: Learn/CSS/Estilitzar_text/Estilitzar_enllaços ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/styling_text/styling_lists/index.html b/files/ca/learn/css/styling_text/styling_lists/index.html index 6caa6e0e24..8ea4d15476 100644 --- a/files/ca/learn/css/styling_text/styling_lists/index.html +++ b/files/ca/learn/css/styling_text/styling_lists/index.html @@ -1,6 +1,6 @@ --- title: Estils de llistes -slug: Learn/CSS/Estilitzar_text/Llistes_estil +slug: Learn/CSS/Styling_text/Styling_lists tags: - Article - Beginner @@ -11,6 +11,7 @@ tags: - bullets - lists translation_of: Learn/CSS/Styling_text/Styling_lists +original_slug: Learn/CSS/Estilitzar_text/Llistes_estil ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/styling_text/typesetting_a_homepage/index.html b/files/ca/learn/css/styling_text/typesetting_a_homepage/index.html index 2619be67e7..48c4955f34 100644 --- a/files/ca/learn/css/styling_text/typesetting_a_homepage/index.html +++ b/files/ca/learn/css/styling_text/typesetting_a_homepage/index.html @@ -1,6 +1,6 @@ --- title: Composició d'una pàgina d'inici de l'escola comunitaria -slug: Learn/CSS/Estilitzar_text/Composició_pàgina_inici +slug: Learn/CSS/Styling_text/Typesetting_a_homepage tags: - Assessment - Beginner @@ -12,6 +12,7 @@ tags: - list - web font translation_of: Learn/CSS/Styling_text/Typesetting_a_homepage +original_slug: Learn/CSS/Estilitzar_text/Composició_pàgina_inici ---
{{LearnSidebar}}
diff --git a/files/ca/learn/css/styling_text/web_fonts/index.html b/files/ca/learn/css/styling_text/web_fonts/index.html index b4d1e8ecfd..beba582471 100644 --- a/files/ca/learn/css/styling_text/web_fonts/index.html +++ b/files/ca/learn/css/styling_text/web_fonts/index.html @@ -1,6 +1,6 @@ --- title: Fonts Web -slug: Learn/CSS/Estilitzar_text/Fonts_Web +slug: Learn/CSS/Styling_text/Web_fonts tags: - '@font-face' - Article @@ -12,6 +12,7 @@ tags: - font-family - web fonts translation_of: Learn/CSS/Styling_text/Web_fonts +original_slug: Learn/CSS/Estilitzar_text/Fonts_Web ---
{{LearnSidebar}}
diff --git a/files/ca/learn/forms/basic_native_form_controls/index.html b/files/ca/learn/forms/basic_native_form_controls/index.html index 73ee2a9249..4cc3b868b6 100644 --- a/files/ca/learn/forms/basic_native_form_controls/index.html +++ b/files/ca/learn/forms/basic_native_form_controls/index.html @@ -1,7 +1,8 @@ --- title: Controls de formulari originals -slug: Learn/HTML/Forms/Controls_de_formulari_originals +slug: Learn/Forms/Basic_native_form_controls translation_of: Learn/Forms/Basic_native_form_controls +original_slug: Learn/HTML/Forms/Controls_de_formulari_originals ---
{{LearnSidebar}}
diff --git a/files/ca/learn/forms/form_validation/index.html b/files/ca/learn/forms/form_validation/index.html index 0b76183d7e..7d5b432e1c 100644 --- a/files/ca/learn/forms/form_validation/index.html +++ b/files/ca/learn/forms/form_validation/index.html @@ -1,7 +1,8 @@ --- title: Validació de formularis del costat del client -slug: Learn/HTML/Forms/Validacio_formularis +slug: Learn/Forms/Form_validation translation_of: Learn/Forms/Form_validation +original_slug: Learn/HTML/Forms/Validacio_formularis ---
{{LearnSidebar}}
diff --git a/files/ca/learn/forms/how_to_structure_a_web_form/index.html b/files/ca/learn/forms/how_to_structure_a_web_form/index.html index c0cb1e022c..6ba3fe8f1c 100644 --- a/files/ca/learn/forms/how_to_structure_a_web_form/index.html +++ b/files/ca/learn/forms/how_to_structure_a_web_form/index.html @@ -1,7 +1,8 @@ --- title: Com estructurar un formulari web -slug: Learn/HTML/Forms/Com_estructurar_un_formulari_web +slug: Learn/Forms/How_to_structure_a_web_form translation_of: Learn/Forms/How_to_structure_a_web_form +original_slug: Learn/HTML/Forms/Com_estructurar_un_formulari_web ---
{{LearnSidebar}}
diff --git a/files/ca/learn/forms/index.html b/files/ca/learn/forms/index.html index bfd01dcf91..964d71c754 100644 --- a/files/ca/learn/forms/index.html +++ b/files/ca/learn/forms/index.html @@ -1,6 +1,6 @@ --- title: HTML forms guide -slug: Learn/HTML/Forms +slug: Learn/Forms tags: - Featured - Formularis @@ -8,6 +8,7 @@ tags: - HTML - Web translation_of: Learn/Forms +original_slug: Learn/HTML/Forms ---

Aquesta guia és una sèrie d'articles que l'ajudaran a dominar els formularis HTML. Els formularis HTML són una eina molt potent per interactuar amb els usuaris; No obstant això, per raons històriques i tècniques, no sempre és obvi com usar-los al seu màxim potencial. En aquesta guia, anem a cobrir tots els aspectes dels formularis HTML, des de donar estil a l'estructura, des de la manipulació de dades amb components personalitzats. Aprendràs a gaudir de la gran potència que ofereixen!

diff --git a/files/ca/learn/forms/your_first_form/index.html b/files/ca/learn/forms/your_first_form/index.html index 3f327d4494..95e79c8da4 100644 --- a/files/ca/learn/forms/your_first_form/index.html +++ b/files/ca/learn/forms/your_first_form/index.html @@ -1,7 +1,8 @@ --- title: El teu primer formulari -slug: Learn/HTML/Forms/El_teu_primer_formulari +slug: Learn/Forms/Your_first_form translation_of: Learn/Forms/Your_first_form +original_slug: Learn/HTML/Forms/El_teu_primer_formulari ---
{{LearnSidebar}}{{NextMenu("Learn/Forms/How_to_structure_a_web_form", "Learn/Forms")}}
diff --git a/files/ca/learn/getting_started_with_the_web/css_basics/index.html b/files/ca/learn/getting_started_with_the_web/css_basics/index.html index 991a20ca78..92ab165fad 100644 --- a/files/ca/learn/getting_started_with_the_web/css_basics/index.html +++ b/files/ca/learn/getting_started_with_the_web/css_basics/index.html @@ -1,6 +1,6 @@ --- title: CSS bàsic -slug: Learn/Getting_started_with_the_web/CSS_bàsic +slug: Learn/Getting_started_with_the_web/CSS_basics tags: - Beginner - CSS @@ -8,8 +8,9 @@ tags: - Learn - Styling - Web - - 'l10n:priority' + - l10n:priority translation_of: Learn/Getting_started_with_the_web/CSS_basics +original_slug: Learn/Getting_started_with_the_web/CSS_bàsic ---
{{LearnSidebar}}
diff --git a/files/ca/learn/getting_started_with_the_web/dealing_with_files/index.html b/files/ca/learn/getting_started_with_the_web/dealing_with_files/index.html index 0ba94d3273..491e11badc 100644 --- a/files/ca/learn/getting_started_with_the_web/dealing_with_files/index.html +++ b/files/ca/learn/getting_started_with_the_web/dealing_with_files/index.html @@ -1,16 +1,17 @@ --- title: Tractar amb arxius -slug: Learn/Getting_started_with_the_web/Tractar_amb_arxius +slug: Learn/Getting_started_with_the_web/Dealing_with_files tags: - Beginner - CodingScripting - Files - Guide - HTML - - 'l10n:priority' + - l10n:priority - theory - website translation_of: Learn/Getting_started_with_the_web/Dealing_with_files +original_slug: Learn/Getting_started_with_the_web/Tractar_amb_arxius ---
{{LearnSidebar}}
diff --git a/files/ca/learn/getting_started_with_the_web/how_the_web_works/index.html b/files/ca/learn/getting_started_with_the_web/how_the_web_works/index.html index 4a36fb2bff..27677a7d4f 100644 --- a/files/ca/learn/getting_started_with_the_web/how_the_web_works/index.html +++ b/files/ca/learn/getting_started_with_the_web/how_the_web_works/index.html @@ -1,6 +1,6 @@ --- title: Com funciona la Web -slug: Learn/Getting_started_with_the_web/Com_funciona_Web +slug: Learn/Getting_started_with_the_web/How_the_Web_works tags: - Beginner - Client @@ -11,8 +11,9 @@ tags: - Learn - Server - TCP - - 'l10n:priority' + - l10n:priority translation_of: Learn/Getting_started_with_the_web/How_the_Web_works +original_slug: Learn/Getting_started_with_the_web/Com_funciona_Web ---
{{LearnSidebar}}
diff --git a/files/ca/learn/getting_started_with_the_web/installing_basic_software/index.html b/files/ca/learn/getting_started_with_the_web/installing_basic_software/index.html index aa431f3199..4b52f765ee 100644 --- a/files/ca/learn/getting_started_with_the_web/installing_basic_software/index.html +++ b/files/ca/learn/getting_started_with_the_web/installing_basic_software/index.html @@ -1,6 +1,6 @@ --- title: Instal·lació bàsica del programari -slug: Learn/Getting_started_with_the_web/Instal·lació_bàsica_programari +slug: Learn/Getting_started_with_the_web/Installing_basic_software tags: - Beginner - Browser @@ -8,9 +8,10 @@ tags: - Setup - Tools - WebMechanics - - 'l10n:priority' + - l10n:priority - text editor translation_of: Learn/Getting_started_with_the_web/Installing_basic_software +original_slug: Learn/Getting_started_with_the_web/Instal·lació_bàsica_programari ---
{{LearnSidebar}}
diff --git a/files/ca/learn/getting_started_with_the_web/javascript_basics/index.html b/files/ca/learn/getting_started_with_the_web/javascript_basics/index.html index e9b90830ca..8ba4dacd4b 100644 --- a/files/ca/learn/getting_started_with_the_web/javascript_basics/index.html +++ b/files/ca/learn/getting_started_with_the_web/javascript_basics/index.html @@ -1,14 +1,15 @@ --- title: JavaScript bàsic -slug: Learn/Getting_started_with_the_web/JavaScript_bàsic +slug: Learn/Getting_started_with_the_web/JavaScript_basics tags: - Beginner - CodingScripting - JavaScript - Learn - Web - - 'l10n:priority' + - l10n:priority translation_of: Learn/Getting_started_with_the_web/JavaScript_basics +original_slug: Learn/Getting_started_with_the_web/JavaScript_bàsic ---
{{LearnSidebar}}
diff --git a/files/ca/learn/getting_started_with_the_web/publishing_your_website/index.html b/files/ca/learn/getting_started_with_the_web/publishing_your_website/index.html index 0329bbfcd0..9999acba6b 100644 --- a/files/ca/learn/getting_started_with_the_web/publishing_your_website/index.html +++ b/files/ca/learn/getting_started_with_the_web/publishing_your_website/index.html @@ -1,6 +1,6 @@ --- title: Publicar el nostre lloc web -slug: Learn/Getting_started_with_the_web/Publicar_nostre_lloc_web +slug: Learn/Getting_started_with_the_web/Publishing_your_website tags: - Beginner - CodingScripting @@ -9,10 +9,11 @@ tags: - Google App Engine - Learn - Web - - 'l10n:priority' + - l10n:priority - publishing - web server translation_of: Learn/Getting_started_with_the_web/Publishing_your_website +original_slug: Learn/Getting_started_with_the_web/Publicar_nostre_lloc_web ---
{{LearnSidebar}}
diff --git a/files/ca/learn/getting_started_with_the_web/what_will_your_website_look_like/index.html b/files/ca/learn/getting_started_with_the_web/what_will_your_website_look_like/index.html index a7e5ef4b2c..733e6aec2e 100644 --- a/files/ca/learn/getting_started_with_the_web/what_will_your_website_look_like/index.html +++ b/files/ca/learn/getting_started_with_the_web/what_will_your_website_look_like/index.html @@ -1,6 +1,6 @@ --- title: Quin aspecte tindrà el vostre lloc web? -slug: Learn/Getting_started_with_the_web/Quin_aspecte_tindrà_vostre_lloc_web +slug: Learn/Getting_started_with_the_web/What_will_your_website_look_like tags: - Assets - Beginner @@ -10,8 +10,9 @@ tags: - Fonts - Learn - Plan - - 'l10n:priority' + - l10n:priority translation_of: Learn/Getting_started_with_the_web/What_will_your_website_look_like +original_slug: Learn/Getting_started_with_the_web/Quin_aspecte_tindrà_vostre_lloc_web ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/howto/author_fast-loading_html_pages/index.html b/files/ca/learn/html/howto/author_fast-loading_html_pages/index.html index 6c683a8156..09e45b6131 100644 --- a/files/ca/learn/html/howto/author_fast-loading_html_pages/index.html +++ b/files/ca/learn/html/howto/author_fast-loading_html_pages/index.html @@ -1,6 +1,6 @@ --- title: Consells per crear pàgines HTML de càrrega ràpida -slug: Web/Guide/HTML/_Consells_per_crear_pàgines_HTML_de_càrrega_ràpida +slug: Learn/HTML/Howto/Author_fast-loading_HTML_pages tags: - Advanced - Guide @@ -9,6 +9,7 @@ tags: - Performance - Web translation_of: Learn/HTML/Howto/Author_fast-loading_HTML_pages +original_slug: Web/Guide/HTML/_Consells_per_crear_pàgines_HTML_de_càrrega_ràpida ---

Aquests consells es basen en el coneixement i l'experimentació comuna.

diff --git a/files/ca/learn/html/introduction_to_html/advanced_text_formatting/index.html b/files/ca/learn/html/introduction_to_html/advanced_text_formatting/index.html index 8163f0b4c3..4e48058397 100644 --- a/files/ca/learn/html/introduction_to_html/advanced_text_formatting/index.html +++ b/files/ca/learn/html/introduction_to_html/advanced_text_formatting/index.html @@ -1,6 +1,6 @@ --- title: Format de text avançat -slug: Learn/HTML/Introducció_al_HTML/Format_de_text_avançat +slug: Learn/HTML/Introduction_to_HTML/Advanced_text_formatting tags: - Beginner - CodingScripting @@ -13,6 +13,7 @@ tags: - quote - semantic translation_of: Learn/HTML/Introduction_to_HTML/Advanced_text_formatting +original_slug: Learn/HTML/Introducció_al_HTML/Format_de_text_avançat ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/introduction_to_html/creating_hyperlinks/index.html b/files/ca/learn/html/introduction_to_html/creating_hyperlinks/index.html index c2bc2d0b0c..8bbe503472 100644 --- a/files/ca/learn/html/introduction_to_html/creating_hyperlinks/index.html +++ b/files/ca/learn/html/introduction_to_html/creating_hyperlinks/index.html @@ -1,6 +1,6 @@ --- title: Crear hipervincles -slug: Learn/HTML/Introducció_al_HTML/Crear_hipervincles +slug: Learn/HTML/Introduction_to_HTML/Creating_hyperlinks tags: - Beginner - CodingScripting @@ -14,6 +14,7 @@ tags: - relative - urls translation_of: Learn/HTML/Introduction_to_HTML/Creating_hyperlinks +original_slug: Learn/HTML/Introducció_al_HTML/Crear_hipervincles ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/introduction_to_html/debugging_html/index.html b/files/ca/learn/html/introduction_to_html/debugging_html/index.html index 5d8feaea62..ec95564653 100644 --- a/files/ca/learn/html/introduction_to_html/debugging_html/index.html +++ b/files/ca/learn/html/introduction_to_html/debugging_html/index.html @@ -1,6 +1,6 @@ --- title: Depurar HTML -slug: Learn/HTML/Introducció_al_HTML/Depurar_HTML +slug: Learn/HTML/Introduction_to_HTML/Debugging_HTML tags: - Beginner - CodingScripting @@ -11,6 +11,7 @@ tags: - Validation - validator translation_of: Learn/HTML/Introduction_to_HTML/Debugging_HTML +original_slug: Learn/HTML/Introducció_al_HTML/Depurar_HTML ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/introduction_to_html/document_and_website_structure/index.html b/files/ca/learn/html/introduction_to_html/document_and_website_structure/index.html index 1088731eea..c072bc7c22 100644 --- a/files/ca/learn/html/introduction_to_html/document_and_website_structure/index.html +++ b/files/ca/learn/html/introduction_to_html/document_and_website_structure/index.html @@ -1,7 +1,8 @@ --- title: Document i estructura del lloc web -slug: Learn/HTML/Introducció_al_HTML/Document_i_estructura_del_lloc_web +slug: Learn/HTML/Introduction_to_HTML/Document_and_website_structure translation_of: Learn/HTML/Introduction_to_HTML/Document_and_website_structure +original_slug: Learn/HTML/Introducció_al_HTML/Document_i_estructura_del_lloc_web ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/introduction_to_html/getting_started/index.html b/files/ca/learn/html/introduction_to_html/getting_started/index.html index 03b70effc6..aa2074f0bb 100644 --- a/files/ca/learn/html/introduction_to_html/getting_started/index.html +++ b/files/ca/learn/html/introduction_to_html/getting_started/index.html @@ -1,6 +1,6 @@ --- title: Inici en HTML -slug: Learn/HTML/Introducció_al_HTML/Getting_started +slug: Learn/HTML/Introduction_to_HTML/Getting_started tags: - Attribute - Beginner @@ -12,6 +12,7 @@ tags: - entity reference - whitespace translation_of: Learn/HTML/Introduction_to_HTML/Getting_started +original_slug: Learn/HTML/Introducció_al_HTML/Getting_started ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/introduction_to_html/html_text_fundamentals/index.html b/files/ca/learn/html/introduction_to_html/html_text_fundamentals/index.html index fafc49effe..4e25b7fd7b 100644 --- a/files/ca/learn/html/introduction_to_html/html_text_fundamentals/index.html +++ b/files/ca/learn/html/introduction_to_html/html_text_fundamentals/index.html @@ -1,6 +1,6 @@ --- title: Fonaments de text HTML -slug: Learn/HTML/Introducció_al_HTML/Fonaments_de_text_HTML +slug: Learn/HTML/Introduction_to_HTML/HTML_text_fundamentals tags: - Beginner - CodingScripting @@ -13,6 +13,7 @@ tags: - paragraphs - semantics translation_of: Learn/HTML/Introduction_to_HTML/HTML_text_fundamentals +original_slug: Learn/HTML/Introducció_al_HTML/Fonaments_de_text_HTML ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/introduction_to_html/index.html b/files/ca/learn/html/introduction_to_html/index.html index 721a2795f5..835f2046b0 100644 --- a/files/ca/learn/html/introduction_to_html/index.html +++ b/files/ca/learn/html/introduction_to_html/index.html @@ -1,6 +1,6 @@ --- title: Introducció a l'HTML -slug: Learn/HTML/Introducció_al_HTML +slug: Learn/HTML/Introduction_to_HTML tags: - CodingScripting - HTML @@ -12,6 +12,7 @@ tags: - head - semantics translation_of: Learn/HTML/Introduction_to_HTML +original_slug: Learn/HTML/Introducció_al_HTML ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/introduction_to_html/marking_up_a_letter/index.html b/files/ca/learn/html/introduction_to_html/marking_up_a_letter/index.html index 34647eb294..999aabd8bd 100644 --- a/files/ca/learn/html/introduction_to_html/marking_up_a_letter/index.html +++ b/files/ca/learn/html/introduction_to_html/marking_up_a_letter/index.html @@ -1,6 +1,6 @@ --- title: Marcatge d'una carta -slug: Learn/HTML/Introducció_al_HTML/Marcatge_una_carta +slug: Learn/HTML/Introduction_to_HTML/Marking_up_a_letter tags: - Assessment - Beginner @@ -10,6 +10,7 @@ tags: - Text - head translation_of: Learn/HTML/Introduction_to_HTML/Marking_up_a_letter +original_slug: Learn/HTML/Introducció_al_HTML/Marcatge_una_carta ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/introduction_to_html/structuring_a_page_of_content/index.html b/files/ca/learn/html/introduction_to_html/structuring_a_page_of_content/index.html index e3481bdc15..838a26fe56 100644 --- a/files/ca/learn/html/introduction_to_html/structuring_a_page_of_content/index.html +++ b/files/ca/learn/html/introduction_to_html/structuring_a_page_of_content/index.html @@ -1,6 +1,6 @@ --- title: Estructurar una pàgina de contingut -slug: Learn/HTML/Introducció_al_HTML/Estructurar_una_pàgina_de_contingut +slug: Learn/HTML/Introduction_to_HTML/Structuring_a_page_of_content tags: - Assessment - Beginner @@ -12,6 +12,7 @@ tags: - Structure - semantics translation_of: Learn/HTML/Introduction_to_HTML/Structuring_a_page_of_content +original_slug: Learn/HTML/Introducció_al_HTML/Estructurar_una_pàgina_de_contingut ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/introduction_to_html/the_head_metadata_in_html/index.html b/files/ca/learn/html/introduction_to_html/the_head_metadata_in_html/index.html index 934377c4ca..85677b1759 100644 --- a/files/ca/learn/html/introduction_to_html/the_head_metadata_in_html/index.html +++ b/files/ca/learn/html/introduction_to_html/the_head_metadata_in_html/index.html @@ -1,6 +1,6 @@ --- title: Què hi ha en el head? Metadades en HTML -slug: Learn/HTML/Introducció_al_HTML/Què_hi_ha_en_el_head_Metadades_en_HTML +slug: Learn/HTML/Introduction_to_HTML/The_head_metadata_in_HTML tags: - Beginner - CodingScripting @@ -12,6 +12,7 @@ tags: - lang - metadata translation_of: Learn/HTML/Introduction_to_HTML/The_head_metadata_in_HTML +original_slug: Learn/HTML/Introducció_al_HTML/Què_hi_ha_en_el_head_Metadades_en_HTML ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/multimedia_and_embedding/adding_vector_graphics_to_the_web/index.html b/files/ca/learn/html/multimedia_and_embedding/adding_vector_graphics_to_the_web/index.html index feaf09c048..082feae6bf 100644 --- a/files/ca/learn/html/multimedia_and_embedding/adding_vector_graphics_to_the_web/index.html +++ b/files/ca/learn/html/multimedia_and_embedding/adding_vector_graphics_to_the_web/index.html @@ -1,6 +1,6 @@ --- title: Afegir gràfics vectorials a la Web -slug: Learn/HTML/Multimèdia_i_incrustar/Afegir_gràfics_vectorials_a_la_Web +slug: Learn/HTML/Multimedia_and_embedding/Adding_vector_graphics_to_the_Web tags: - Beginner - Graphics @@ -14,6 +14,7 @@ tags: - iframe - img translation_of: Learn/HTML/Multimedia_and_embedding/Adding_vector_graphics_to_the_Web +original_slug: Learn/HTML/Multimèdia_i_incrustar/Afegir_gràfics_vectorials_a_la_Web ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/multimedia_and_embedding/images_in_html/index.html b/files/ca/learn/html/multimedia_and_embedding/images_in_html/index.html index 839a38b400..74dc1ff697 100644 --- a/files/ca/learn/html/multimedia_and_embedding/images_in_html/index.html +++ b/files/ca/learn/html/multimedia_and_embedding/images_in_html/index.html @@ -1,6 +1,6 @@ --- title: Imatges en HTML -slug: Learn/HTML/Multimèdia_i_incrustar/Images_in_HTML +slug: Learn/HTML/Multimedia_and_embedding/Images_in_HTML tags: - Article - Beginner @@ -13,6 +13,7 @@ tags: - figure - img translation_of: Learn/HTML/Multimedia_and_embedding/Images_in_HTML +original_slug: Learn/HTML/Multimèdia_i_incrustar/Images_in_HTML ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/multimedia_and_embedding/index.html b/files/ca/learn/html/multimedia_and_embedding/index.html index 43e0e89c91..d4f9d6fef8 100644 --- a/files/ca/learn/html/multimedia_and_embedding/index.html +++ b/files/ca/learn/html/multimedia_and_embedding/index.html @@ -1,6 +1,6 @@ --- title: Multimèdia i incrustar -slug: Learn/HTML/Multimèdia_i_incrustar +slug: Learn/HTML/Multimedia_and_embedding tags: - Assessment - Audio @@ -18,6 +18,7 @@ tags: - imagemaps - responsive translation_of: Learn/HTML/Multimedia_and_embedding +original_slug: Learn/HTML/Multimèdia_i_incrustar ---
Multimèdia i incrustar
diff --git a/files/ca/learn/html/multimedia_and_embedding/mozilla_splash_page/index.html b/files/ca/learn/html/multimedia_and_embedding/mozilla_splash_page/index.html index 71e1d3426e..7f47d7762c 100644 --- a/files/ca/learn/html/multimedia_and_embedding/mozilla_splash_page/index.html +++ b/files/ca/learn/html/multimedia_and_embedding/mozilla_splash_page/index.html @@ -1,6 +1,6 @@ --- title: Mozilla pàgina de benvinguda -slug: Learn/HTML/Multimèdia_i_incrustar/Mozilla_pàgina_de_benvinguda +slug: Learn/HTML/Multimedia_and_embedding/Mozilla_splash_page tags: - Assessment - Beginner @@ -16,6 +16,7 @@ tags: - sizes - srcset translation_of: Learn/HTML/Multimedia_and_embedding/Mozilla_splash_page +original_slug: Learn/HTML/Multimèdia_i_incrustar/Mozilla_pàgina_de_benvinguda ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/multimedia_and_embedding/other_embedding_technologies/index.html b/files/ca/learn/html/multimedia_and_embedding/other_embedding_technologies/index.html index 0a69bc1d47..caccc6782b 100644 --- a/files/ca/learn/html/multimedia_and_embedding/other_embedding_technologies/index.html +++ b/files/ca/learn/html/multimedia_and_embedding/other_embedding_technologies/index.html @@ -1,7 +1,6 @@ --- title: De objecte a iframe - altres tecnologies d'incrustació -slug: >- - Learn/HTML/Multimèdia_i_incrustar/De_objecte_a_iframe_altres_tecnologies_incrustació +slug: Learn/HTML/Multimedia_and_embedding/Other_embedding_technologies tags: - Article - Beginner @@ -16,6 +15,8 @@ tags: - embed - iframe translation_of: Learn/HTML/Multimedia_and_embedding/Other_embedding_technologies +original_slug: >- + Learn/HTML/Multimèdia_i_incrustar/De_objecte_a_iframe_altres_tecnologies_incrustació ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/multimedia_and_embedding/responsive_images/index.html b/files/ca/learn/html/multimedia_and_embedding/responsive_images/index.html index 4be56f6248..ddcce139ff 100644 --- a/files/ca/learn/html/multimedia_and_embedding/responsive_images/index.html +++ b/files/ca/learn/html/multimedia_and_embedding/responsive_images/index.html @@ -1,6 +1,6 @@ --- title: Imatges sensibles -slug: Learn/HTML/Multimèdia_i_incrustar/Imatges_sensibles +slug: Learn/HTML/Multimedia_and_embedding/Responsive_images tags: - Article - Beginner @@ -15,6 +15,7 @@ tags: - sizes - srcset translation_of: Learn/HTML/Multimedia_and_embedding/Responsive_images +original_slug: Learn/HTML/Multimèdia_i_incrustar/Imatges_sensibles ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/multimedia_and_embedding/video_and_audio_content/index.html b/files/ca/learn/html/multimedia_and_embedding/video_and_audio_content/index.html index 5a8855df2b..c37b3ecfd4 100644 --- a/files/ca/learn/html/multimedia_and_embedding/video_and_audio_content/index.html +++ b/files/ca/learn/html/multimedia_and_embedding/video_and_audio_content/index.html @@ -1,6 +1,6 @@ --- title: Contingut de vídeo i àudio -slug: Learn/HTML/Multimèdia_i_incrustar/Contingut_de_vídeo_i_àudio +slug: Learn/HTML/Multimedia_and_embedding/Video_and_audio_content tags: - Article - Audio @@ -12,6 +12,7 @@ tags: - subtitles - track translation_of: Learn/HTML/Multimedia_and_embedding/Video_and_audio_content +original_slug: Learn/HTML/Multimèdia_i_incrustar/Contingut_de_vídeo_i_àudio ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/tables/advanced/index.html b/files/ca/learn/html/tables/advanced/index.html index 69b7edf725..8ccd08e053 100644 --- a/files/ca/learn/html/tables/advanced/index.html +++ b/files/ca/learn/html/tables/advanced/index.html @@ -1,6 +1,6 @@ --- title: 'Taules HTML: característiques avançades i accessibilitat' -slug: Learn/HTML/Taules_HTML/Taula_HTML_característiques_avançades_i_laccessibilitat +slug: Learn/HTML/Tables/Advanced tags: - Accessibility - Advanced @@ -19,6 +19,7 @@ tags: - tfoot - thead translation_of: Learn/HTML/Tables/Advanced +original_slug: Learn/HTML/Taules_HTML/Taula_HTML_característiques_avançades_i_laccessibilitat ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/tables/basics/index.html b/files/ca/learn/html/tables/basics/index.html index f21f6fd3ca..fd6156d930 100644 --- a/files/ca/learn/html/tables/basics/index.html +++ b/files/ca/learn/html/tables/basics/index.html @@ -1,6 +1,6 @@ --- title: Fonaments de la taula HTML -slug: Learn/HTML/Taules_HTML/Fonaments_de_la_taula_HTML +slug: Learn/HTML/Tables/Basics tags: - Article - Beginner @@ -17,6 +17,7 @@ tags: - row - rowspan translation_of: Learn/HTML/Tables/Basics +original_slug: Learn/HTML/Taules_HTML/Fonaments_de_la_taula_HTML ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/tables/index.html b/files/ca/learn/html/tables/index.html index add81f874e..433e905386 100644 --- a/files/ca/learn/html/tables/index.html +++ b/files/ca/learn/html/tables/index.html @@ -1,6 +1,6 @@ --- title: Taules HTML -slug: Learn/HTML/Taules_HTML +slug: Learn/HTML/Tables tags: - Article - Beginner @@ -11,6 +11,7 @@ tags: - Module - Tables translation_of: Learn/HTML/Tables +original_slug: Learn/HTML/Taules_HTML ---
{{LearnSidebar}}
diff --git a/files/ca/learn/html/tables/structuring_planet_data/index.html b/files/ca/learn/html/tables/structuring_planet_data/index.html index 15d583607f..2f49124e01 100644 --- a/files/ca/learn/html/tables/structuring_planet_data/index.html +++ b/files/ca/learn/html/tables/structuring_planet_data/index.html @@ -1,6 +1,6 @@ --- title: 'Avaluació: Estructurar les dades dels planeta' -slug: Learn/HTML/Taules_HTML/Avaluació_Estructurar_les_dades_dels_planeta +slug: Learn/HTML/Tables/Structuring_planet_data tags: - Assessment - Beginner @@ -9,6 +9,7 @@ tags: - Learn - Tables translation_of: Learn/HTML/Tables/Structuring_planet_data +original_slug: Learn/HTML/Taules_HTML/Avaluació_Estructurar_les_dades_dels_planeta ---
{{LearnSidebar}}
diff --git a/files/ca/learn/javascript/client-side_web_apis/manipulating_documents/index.html b/files/ca/learn/javascript/client-side_web_apis/manipulating_documents/index.html index 83a6f18c98..4250d46dea 100644 --- a/files/ca/learn/javascript/client-side_web_apis/manipulating_documents/index.html +++ b/files/ca/learn/javascript/client-side_web_apis/manipulating_documents/index.html @@ -1,9 +1,9 @@ --- title: JavaScript i CSS -slug: Web/Guide/CSS/Inici_en_CSS/JavaScript +slug: Learn/JavaScript/Client-side_web_APIs/Manipulating_documents tags: - CSS - - 'CSS:Getting_Started' + - CSS:Getting_Started - Example - Guide - Intermediate @@ -11,6 +11,7 @@ tags: - Web translation_of: Learn/JavaScript/Client-side_web_APIs/Manipulating_documents translation_of_original: Web/Guide/CSS/Getting_started/JavaScript +original_slug: Web/Guide/CSS/Inici_en_CSS/JavaScript ---

{{ CSSTutorialTOC() }}

diff --git a/files/ca/learn/javascript/objects/index.html b/files/ca/learn/javascript/objects/index.html index 187f7930f4..299d0c2bd3 100644 --- a/files/ca/learn/javascript/objects/index.html +++ b/files/ca/learn/javascript/objects/index.html @@ -1,8 +1,9 @@ --- title: Introducció al Javascript orientat a Objectes -slug: Web/JavaScript/Introducció_al_Javascript_orientat_a_Objectes +slug: Learn/JavaScript/Objects translation_of: Learn/JavaScript/Objects translation_of_original: Web/JavaScript/Introduction_to_Object-Oriented_JavaScript +original_slug: Web/JavaScript/Introducció_al_Javascript_orientat_a_Objectes ---
{{jsSidebar("Introductory")}}
diff --git a/files/ca/mdn/at_ten/index.html b/files/ca/mdn/at_ten/index.html index 5f61d9d876..f71d68bf5e 100644 --- a/files/ca/mdn/at_ten/index.html +++ b/files/ca/mdn/at_ten/index.html @@ -1,7 +1,8 @@ --- title: MDN at 10 -slug: MDN_at_ten +slug: MDN/At_ten translation_of: MDN_at_ten +original_slug: MDN_at_ten --- diff --git a/files/ca/mdn/contribute/processes/index.html b/files/ca/mdn/contribute/processes/index.html index 69faa1d6b5..cce4ff173a 100644 --- a/files/ca/mdn/contribute/processes/index.html +++ b/files/ca/mdn/contribute/processes/index.html @@ -1,11 +1,12 @@ --- title: Processos de documentació -slug: MDN/Contribute/Processos +slug: MDN/Contribute/Processes tags: - Landing - MDN Meta - Processes translation_of: MDN/Contribute/Processes +original_slug: MDN/Contribute/Processos ---
{{MDNSidebar}}
{{IncludeSubnav("/en-US/docs/MDN")}}
diff --git a/files/ca/mdn/yari/index.html b/files/ca/mdn/yari/index.html index b9c1ddc40d..a6c0effed5 100644 --- a/files/ca/mdn/yari/index.html +++ b/files/ca/mdn/yari/index.html @@ -1,11 +1,12 @@ --- title: 'Kuma: plataforma wiki de MDN' -slug: MDN/Kuma +slug: MDN/Yari tags: - Kuma - Landing - MDN Meta translation_of: MDN/Kuma +original_slug: MDN/Kuma ---
{{MDNSidebar}}
diff --git a/files/ca/mozilla/firefox/releases/2/index.html b/files/ca/mozilla/firefox/releases/2/index.html index 911a4004f5..347a056a2f 100644 --- a/files/ca/mozilla/firefox/releases/2/index.html +++ b/files/ca/mozilla/firefox/releases/2/index.html @@ -1,7 +1,8 @@ --- title: Firefox 2 per a desenvolupadors -slug: Firefox_2_per_a_desenvolupadors +slug: Mozilla/Firefox/Releases/2 translation_of: Mozilla/Firefox/Releases/2 +original_slug: Firefox_2_per_a_desenvolupadors ---

Noves característiques de desenvolupament en el Firefox 2

El Firefox 2 introdueix un gran nombre de noves funcionalitats i possibilitats. Aquest article us proporciona tot un seguit d'articles que cobreixen aquestes noves característiques.

diff --git a/files/ca/orphaned/mdn/community/index.html b/files/ca/orphaned/mdn/community/index.html index 26b3c182a8..20d3bb66ee 100644 --- a/files/ca/orphaned/mdn/community/index.html +++ b/files/ca/orphaned/mdn/community/index.html @@ -1,12 +1,13 @@ --- title: Uniu-vos a la comunitat MDN -slug: MDN/Comunitat +slug: orphaned/MDN/Community tags: - Community - Guide - Landing - MDN Meta translation_of: MDN/Community +original_slug: MDN/Comunitat ---
{{MDNSidebar}}
diff --git a/files/ca/orphaned/mdn/contribute/howto/create_an_mdn_account/index.html b/files/ca/orphaned/mdn/contribute/howto/create_an_mdn_account/index.html index fd8ae9355c..25213fa69f 100644 --- a/files/ca/orphaned/mdn/contribute/howto/create_an_mdn_account/index.html +++ b/files/ca/orphaned/mdn/contribute/howto/create_an_mdn_account/index.html @@ -1,7 +1,8 @@ --- title: Com crear un compte MDN -slug: MDN/Contribute/Howto/Crear_un_compte_MDN +slug: orphaned/MDN/Contribute/Howto/Create_an_MDN_account translation_of: MDN/Contribute/Howto/Create_an_MDN_account +original_slug: MDN/Contribute/Howto/Crear_un_compte_MDN ---
{{MDNSidebar}}
diff --git a/files/ca/orphaned/web/html/element/command/index.html b/files/ca/orphaned/web/html/element/command/index.html index 17614b7e4f..bd49e982d2 100644 --- a/files/ca/orphaned/web/html/element/command/index.html +++ b/files/ca/orphaned/web/html/element/command/index.html @@ -1,12 +1,13 @@ --- title: -slug: Web/HTML/Element/command +slug: orphaned/Web/HTML/Element/command tags: - HTML - HTML Element Reference - HTML element - HTML5 translation_of: Web/HTML/Element/command +original_slug: Web/HTML/Element/command ---
{{obsolete_header()}}
diff --git a/files/ca/orphaned/web/html/element/element/index.html b/files/ca/orphaned/web/html/element/element/index.html index 66e51e06e1..d3cb0b7196 100644 --- a/files/ca/orphaned/web/html/element/element/index.html +++ b/files/ca/orphaned/web/html/element/element/index.html @@ -1,7 +1,8 @@ --- title: -slug: Web/HTML/Element/element +slug: orphaned/Web/HTML/Element/element translation_of: Web/HTML/Element/element +original_slug: Web/HTML/Element/element ---

Nota: Aquest element s'ha eliminat de l'especificació. Vegeu això per més informació de l'editor de l'especificació.

diff --git a/files/ca/orphaned/web/html/global_attributes/dropzone/index.html b/files/ca/orphaned/web/html/global_attributes/dropzone/index.html index 9435eb1c68..3870f0f65f 100644 --- a/files/ca/orphaned/web/html/global_attributes/dropzone/index.html +++ b/files/ca/orphaned/web/html/global_attributes/dropzone/index.html @@ -1,12 +1,13 @@ --- title: dropzone -slug: Web/HTML/Global_attributes/dropzone +slug: orphaned/Web/HTML/Global_attributes/dropzone tags: - Experimental - Global attributes - HTML - Reference translation_of: Web/HTML/Global_attributes/dropzone +original_slug: Web/HTML/Global_attributes/dropzone ---

{{HTMLSidebar("Global_attributes")}}{{SeeCompatTable}}

diff --git a/files/ca/orphaned/web/javascript/reference/global_objects/array/prototype/index.html b/files/ca/orphaned/web/javascript/reference/global_objects/array/prototype/index.html index 35ebf53933..ec3d1c29d7 100644 --- a/files/ca/orphaned/web/javascript/reference/global_objects/array/prototype/index.html +++ b/files/ca/orphaned/web/javascript/reference/global_objects/array/prototype/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype -slug: Web/JavaScript/Referencia/Objectes_globals/Array/prototype +slug: orphaned/Web/JavaScript/Reference/Global_Objects/Array/prototype translation_of: Web/JavaScript/Reference/Global_Objects/Array/prototype +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/prototype ---
{{JSRef}}
diff --git a/files/ca/web/api/canvas_api/tutorial/advanced_animations/index.html b/files/ca/web/api/canvas_api/tutorial/advanced_animations/index.html index 4aebb46529..5b70ecc32b 100644 --- a/files/ca/web/api/canvas_api/tutorial/advanced_animations/index.html +++ b/files/ca/web/api/canvas_api/tutorial/advanced_animations/index.html @@ -1,11 +1,12 @@ --- title: Animacions avançades -slug: Web/API/Canvas_API/Tutorial/Animacions_avançades +slug: Web/API/Canvas_API/Tutorial/Advanced_animations tags: - Canvas - Graphics - Tutorial translation_of: Web/API/Canvas_API/Tutorial/Advanced_animations +original_slug: Web/API/Canvas_API/Tutorial/Animacions_avançades ---
{{CanvasSidebar}} {{PreviousNext("Web/API/Canvas_API/Tutorial/Basic_animations", "Web/API/Canvas_API/Tutorial/Pixel_manipulation_with_canvas")}}
diff --git a/files/ca/web/api/canvas_api/tutorial/applying_styles_and_colors/index.html b/files/ca/web/api/canvas_api/tutorial/applying_styles_and_colors/index.html index 9adcc2d5f4..b0dbadb6a0 100644 --- a/files/ca/web/api/canvas_api/tutorial/applying_styles_and_colors/index.html +++ b/files/ca/web/api/canvas_api/tutorial/applying_styles_and_colors/index.html @@ -1,6 +1,6 @@ --- title: Aplicar estils i colors -slug: Web/API/Canvas_API/Tutorial/Aplicar_estils_i_colors +slug: Web/API/Canvas_API/Tutorial/Applying_styles_and_colors tags: - Canvas - Graphics @@ -9,6 +9,7 @@ tags: - Intermediate - Tutorial translation_of: Web/API/Canvas_API/Tutorial/Applying_styles_and_colors +original_slug: Web/API/Canvas_API/Tutorial/Aplicar_estils_i_colors ---
{{CanvasSidebar}} {{PreviousNext("Web/API/Canvas_API/Tutorial/Drawing_shapes", "Web/API/Canvas_API/Tutorial/Drawing_text")}}
diff --git a/files/ca/web/api/canvas_api/tutorial/basic_animations/index.html b/files/ca/web/api/canvas_api/tutorial/basic_animations/index.html index e4a3751d1e..358c12a3d7 100644 --- a/files/ca/web/api/canvas_api/tutorial/basic_animations/index.html +++ b/files/ca/web/api/canvas_api/tutorial/basic_animations/index.html @@ -1,6 +1,6 @@ --- title: Animacions bàsiques -slug: Web/API/Canvas_API/Tutorial/Animacions_bàsiques +slug: Web/API/Canvas_API/Tutorial/Basic_animations tags: - Canvas - Graphics @@ -9,6 +9,7 @@ tags: - Intermediate - Tutorial translation_of: Web/API/Canvas_API/Tutorial/Basic_animations +original_slug: Web/API/Canvas_API/Tutorial/Animacions_bàsiques ---
{{CanvasSidebar}} {{PreviousNext("Web/API/Canvas_API/Tutorial/Compositing", "Web/API/Canvas_API/Tutorial/Advanced_animations")}}
diff --git a/files/ca/web/api/canvas_api/tutorial/basic_usage/index.html b/files/ca/web/api/canvas_api/tutorial/basic_usage/index.html index fb15a62d81..cd0bfd3634 100644 --- a/files/ca/web/api/canvas_api/tutorial/basic_usage/index.html +++ b/files/ca/web/api/canvas_api/tutorial/basic_usage/index.html @@ -1,6 +1,6 @@ --- title: Ús bàsic de canvas -slug: Web/API/Canvas_API/Tutorial/Ús_bàsic +slug: Web/API/Canvas_API/Tutorial/Basic_usage tags: - Canvas - Graphics @@ -8,6 +8,7 @@ tags: - Intermediate - Tutorial translation_of: Web/API/Canvas_API/Tutorial/Basic_usage +original_slug: Web/API/Canvas_API/Tutorial/Ús_bàsic ---
{{CanvasSidebar}} {{PreviousNext("Web/API/Canvas_API/Tutorial", "Web/API/Canvas_API/Tutorial/Drawing_shapes")}}
diff --git a/files/ca/web/api/canvas_api/tutorial/compositing/index.html b/files/ca/web/api/canvas_api/tutorial/compositing/index.html index e556e911d4..3aae44e059 100644 --- a/files/ca/web/api/canvas_api/tutorial/compositing/index.html +++ b/files/ca/web/api/canvas_api/tutorial/compositing/index.html @@ -1,6 +1,6 @@ --- title: Composició i retall -slug: Web/API/Canvas_API/Tutorial/Composició +slug: Web/API/Canvas_API/Tutorial/Compositing tags: - Canvas - Graphics @@ -9,6 +9,7 @@ tags: - Intermediate - Tutorial translation_of: Web/API/Canvas_API/Tutorial/Compositing +original_slug: Web/API/Canvas_API/Tutorial/Composició ---
{{CanvasSidebar}} {{PreviousNext("Web/API/Canvas_API/Tutorial/Transformations", "Web/API/Canvas_API/Tutorial/Basic_animations")}}
diff --git a/files/ca/web/api/canvas_api/tutorial/drawing_text/index.html b/files/ca/web/api/canvas_api/tutorial/drawing_text/index.html index 37b730176a..b7bd981cd9 100644 --- a/files/ca/web/api/canvas_api/tutorial/drawing_text/index.html +++ b/files/ca/web/api/canvas_api/tutorial/drawing_text/index.html @@ -1,12 +1,13 @@ --- title: Dibuixar text -slug: Web/API/Canvas_API/Tutorial/Dibuixar_text +slug: Web/API/Canvas_API/Tutorial/Drawing_text tags: - Canvas - Graphics - Intermediate - Tutorial translation_of: Web/API/Canvas_API/Tutorial/Drawing_text +original_slug: Web/API/Canvas_API/Tutorial/Dibuixar_text ---
{{CanvasSidebar}} {{PreviousNext("Web/API/Canvas_API/Tutorial/Applying_styles_and_colors", "Web/API/Canvas_API/Tutorial/Using_images")}}
diff --git a/files/ca/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.html b/files/ca/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.html index d792e62ef0..b437cfbb7e 100644 --- a/files/ca/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.html +++ b/files/ca/web/api/canvas_api/tutorial/pixel_manipulation_with_canvas/index.html @@ -1,12 +1,13 @@ --- title: Manipular píxels amb canvas -slug: Web/API/Canvas_API/Tutorial/Manipular_píxels_amb_canvas +slug: Web/API/Canvas_API/Tutorial/Pixel_manipulation_with_canvas tags: - Canvas - Graphics - Intermediate - Tutorial translation_of: Web/API/Canvas_API/Tutorial/Pixel_manipulation_with_canvas +original_slug: Web/API/Canvas_API/Tutorial/Manipular_píxels_amb_canvas ---
{{CanvasSidebar}} {{PreviousNext("Web/API/Canvas_API/Tutorial/Advanced_animations", "Web/API/Canvas_API/Tutorial/Hit_regions_and_accessibility")}}
diff --git a/files/ca/web/api/canvas_api/tutorial/transformations/index.html b/files/ca/web/api/canvas_api/tutorial/transformations/index.html index 2958d40498..ee81746c6d 100644 --- a/files/ca/web/api/canvas_api/tutorial/transformations/index.html +++ b/files/ca/web/api/canvas_api/tutorial/transformations/index.html @@ -1,6 +1,6 @@ --- title: Transformacions -slug: Web/API/Canvas_API/Tutorial/Transformacions +slug: Web/API/Canvas_API/Tutorial/Transformations tags: - Canvas - Graphics @@ -10,6 +10,7 @@ tags: - Intermediate - Web translation_of: Web/API/Canvas_API/Tutorial/Transformations +original_slug: Web/API/Canvas_API/Tutorial/Transformacions ---
{{CanvasSidebar}} {{PreviousNext("Web/API/Canvas_API/Tutorial/Using_images", "Web/API/Canvas_API/Tutorial/Compositing")}}
diff --git a/files/ca/web/css/_colon_is/index.html b/files/ca/web/css/_colon_is/index.html index 6669bc645a..735c5dd92d 100644 --- a/files/ca/web/css/_colon_is/index.html +++ b/files/ca/web/css/_colon_is/index.html @@ -1,13 +1,14 @@ --- title: ':any' -slug: 'Web/CSS/:any' +slug: Web/CSS/:is tags: - CSS - Experimental - Pseudo-class - Reference -translation_of: 'Web/CSS/:is' -translation_of_original: 'Web/CSS/:any' +translation_of: Web/CSS/:is +translation_of_original: Web/CSS/:any +original_slug: Web/CSS/:any ---
{{CSSRef}}{{SeeCompatTable}}
diff --git a/files/ca/web/css/adjacent_sibling_combinator/index.html b/files/ca/web/css/adjacent_sibling_combinator/index.html index 911a395693..4cdeef9759 100644 --- a/files/ca/web/css/adjacent_sibling_combinator/index.html +++ b/files/ca/web/css/adjacent_sibling_combinator/index.html @@ -1,12 +1,13 @@ --- title: Combinador de germans adjacents -slug: Web/CSS/Selectors_de_germans_adjacents +slug: Web/CSS/Adjacent_sibling_combinator tags: - CSS - NeedsMobileBrowserCompatibility - Reference - Selectors translation_of: Web/CSS/Adjacent_sibling_combinator +original_slug: Web/CSS/Selectors_de_germans_adjacents ---
{{CSSRef("Selectors")}}
diff --git a/files/ca/web/css/attribute_selectors/index.html b/files/ca/web/css/attribute_selectors/index.html index 6778a2b3cb..2878bc2507 100644 --- a/files/ca/web/css/attribute_selectors/index.html +++ b/files/ca/web/css/attribute_selectors/index.html @@ -1,12 +1,13 @@ --- title: Selector Atribut -slug: Web/CSS/Selectors_d'Atribut +slug: Web/CSS/Attribute_selectors tags: - Beginner - CSS - Reference - Selectors translation_of: Web/CSS/Attribute_selectors +original_slug: Web/CSS/Selectors_d'Atribut ---
{{CSSRef}}
diff --git a/files/ca/web/css/child_combinator/index.html b/files/ca/web/css/child_combinator/index.html index f5cb8139f9..312ae090d4 100644 --- a/files/ca/web/css/child_combinator/index.html +++ b/files/ca/web/css/child_combinator/index.html @@ -1,12 +1,13 @@ --- title: Combinador de fills -slug: Web/CSS/Selectors_de_fills +slug: Web/CSS/Child_combinator tags: - CSS - NeedsMobileBrowserCompatibility - Reference - Selectors translation_of: Web/CSS/Child_combinator +original_slug: Web/CSS/Selectors_de_fills ---
{{CSSRef("Selectors")}}
diff --git a/files/ca/web/css/class_selectors/index.html b/files/ca/web/css/class_selectors/index.html index 1f8cfdbee4..1756db8394 100644 --- a/files/ca/web/css/class_selectors/index.html +++ b/files/ca/web/css/class_selectors/index.html @@ -1,11 +1,12 @@ --- title: Selector Class -slug: Web/CSS/Selectors_de_Classe +slug: Web/CSS/Class_selectors tags: - CSS - Reference - Selectors translation_of: Web/CSS/Class_selectors +original_slug: Web/CSS/Selectors_de_Classe ---
{{CSSRef}}
diff --git a/files/ca/web/css/css_box_model/introduction_to_the_css_box_model/index.html b/files/ca/web/css/css_box_model/introduction_to_the_css_box_model/index.html index bfb613ed6c..18acde6b02 100644 --- a/files/ca/web/css/css_box_model/introduction_to_the_css_box_model/index.html +++ b/files/ca/web/css/css_box_model/introduction_to_the_css_box_model/index.html @@ -1,12 +1,13 @@ --- title: Introducció al model de caixa CSS -slug: Web/CSS/CSS_Box_Model/Introducció_al_model_de_caixa_CSS +slug: Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model tags: - CSS - CSS Box Model - Guide - Reference translation_of: Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model +original_slug: Web/CSS/CSS_Box_Model/Introducció_al_model_de_caixa_CSS ---
{{CSSRef}}
diff --git a/files/ca/web/css/css_box_model/mastering_margin_collapsing/index.html b/files/ca/web/css/css_box_model/mastering_margin_collapsing/index.html index 9b312fc789..307cd2bbb8 100644 --- a/files/ca/web/css/css_box_model/mastering_margin_collapsing/index.html +++ b/files/ca/web/css/css_box_model/mastering_margin_collapsing/index.html @@ -1,12 +1,13 @@ --- title: Dominar el col.lapse del marge -slug: Web/CSS/CSS_Box_Model/Dominar_el_col.lapse_del_marge +slug: Web/CSS/CSS_Box_Model/Mastering_margin_collapsing tags: - CSS - CSS Box Model - Guide - Reference translation_of: Web/CSS/CSS_Box_Model/Mastering_margin_collapsing +original_slug: Web/CSS/CSS_Box_Model/Dominar_el_col.lapse_del_marge ---
{{CSSRef}}
diff --git a/files/ca/web/css/css_selectors/index.html b/files/ca/web/css/css_selectors/index.html index 9eaf8daffc..b6041847ef 100644 --- a/files/ca/web/css/css_selectors/index.html +++ b/files/ca/web/css/css_selectors/index.html @@ -1,6 +1,6 @@ --- title: Selectors CSS -slug: Web/CSS/Selectors_CSS +slug: Web/CSS/CSS_Selectors tags: - CSS - CSS Selectors @@ -8,6 +8,7 @@ tags: - Reference - Selectors translation_of: Web/CSS/CSS_Selectors +original_slug: Web/CSS/Selectors_CSS ---
{{CSSRef}}
diff --git a/files/ca/web/css/css_selectors/using_the__colon_target_pseudo-class_in_selectors/index.html b/files/ca/web/css/css_selectors/using_the__colon_target_pseudo-class_in_selectors/index.html index 53339b06e5..f3c708ba38 100644 --- a/files/ca/web/css/css_selectors/using_the__colon_target_pseudo-class_in_selectors/index.html +++ b/files/ca/web/css/css_selectors/using_the__colon_target_pseudo-class_in_selectors/index.html @@ -1,13 +1,14 @@ --- -title: 'Ùs de la pseudo-class :target en selectors' -slug: 'Web/CSS/Selectors_CSS/Using_the_:target_pseudo-class_in_selectors' +title: Ùs de la pseudo-class :target en selectors +slug: Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors tags: - ':target' - CSS - Guide - Reference - Selectors -translation_of: 'Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors' +translation_of: Web/CSS/CSS_Selectors/Using_the_:target_pseudo-class_in_selectors +original_slug: Web/CSS/Selectors_CSS/Using_the_:target_pseudo-class_in_selectors ---
{{CSSRef}}
diff --git a/files/ca/web/css/descendant_combinator/index.html b/files/ca/web/css/descendant_combinator/index.html index 1eb4fd57f8..57cfd0f1ef 100644 --- a/files/ca/web/css/descendant_combinator/index.html +++ b/files/ca/web/css/descendant_combinator/index.html @@ -1,11 +1,12 @@ --- title: Selectors de descendents -slug: Web/CSS/Selectors_de_descendents +slug: Web/CSS/Descendant_combinator tags: - CSS - Reference - Selectors translation_of: Web/CSS/Descendant_combinator +original_slug: Web/CSS/Selectors_de_descendents ---
{{CSSRef("Selectors")}}
diff --git a/files/ca/web/css/general_sibling_combinator/index.html b/files/ca/web/css/general_sibling_combinator/index.html index 64429bbaba..dd14105daa 100644 --- a/files/ca/web/css/general_sibling_combinator/index.html +++ b/files/ca/web/css/general_sibling_combinator/index.html @@ -1,12 +1,13 @@ --- title: Combinador general de germans -slug: Web/CSS/Selectors_general_de_germans +slug: Web/CSS/General_sibling_combinator tags: - CSS - NeedsMobileBrowserCompatibility - Reference - Selectors translation_of: Web/CSS/General_sibling_combinator +original_slug: Web/CSS/Selectors_general_de_germans ---
{{CSSRef("Selectors")}}
diff --git a/files/ca/web/css/id_selectors/index.html b/files/ca/web/css/id_selectors/index.html index 1b6f041eb6..2a51db6e69 100644 --- a/files/ca/web/css/id_selectors/index.html +++ b/files/ca/web/css/id_selectors/index.html @@ -1,11 +1,12 @@ --- title: Selector ID -slug: Web/CSS/Selectors_ID +slug: Web/CSS/ID_selectors tags: - CSS - Reference - Selectors translation_of: Web/CSS/ID_selectors +original_slug: Web/CSS/Selectors_ID ---
{{CSSRef}}
diff --git a/files/ca/web/css/reference/index.html b/files/ca/web/css/reference/index.html index 739dcdc9e3..ac8629ce07 100644 --- a/files/ca/web/css/reference/index.html +++ b/files/ca/web/css/reference/index.html @@ -1,11 +1,12 @@ --- title: Referéncia CSS -slug: Web/CSS/Referéncia_CSS +slug: Web/CSS/Reference tags: - CSS - Reference - - 'l10n:priority' + - l10n:priority translation_of: Web/CSS/Reference +original_slug: Web/CSS/Referéncia_CSS ---

Utilitzeu aquesta referència CSS per explorar un índex alfabètic de totes les propietats CSS estàndard , pseudo-classes, pseudo-elements, tipus de dades, i regles-at. També podeu explorar una llista de tots els  selectors CSS organitzats per tipus i una llista de conceptes clau CSS. També s'inclou una breu referència DOM-CSS / CSSOM.

diff --git a/files/ca/web/css/syntax/index.html b/files/ca/web/css/syntax/index.html index 51931c11f0..876bdca751 100644 --- a/files/ca/web/css/syntax/index.html +++ b/files/ca/web/css/syntax/index.html @@ -1,12 +1,13 @@ --- title: Sintaxi -slug: Web/CSS/Sintaxi +slug: Web/CSS/Syntax tags: - CSS - Guide - Reference - Web translation_of: Web/CSS/Syntax +original_slug: Web/CSS/Sintaxi ---
{{cssref}}
diff --git a/files/ca/web/css/type_selectors/index.html b/files/ca/web/css/type_selectors/index.html index d87b102ac3..78553af969 100644 --- a/files/ca/web/css/type_selectors/index.html +++ b/files/ca/web/css/type_selectors/index.html @@ -1,6 +1,6 @@ --- title: Selector Type -slug: Web/CSS/Selectors_de_Tipus +slug: Web/CSS/Type_selectors tags: - CSS - HTML @@ -9,6 +9,7 @@ tags: - Reference - Selectors translation_of: Web/CSS/Type_selectors +original_slug: Web/CSS/Selectors_de_Tipus ---
{{CSSRef}}
diff --git a/files/ca/web/css/universal_selectors/index.html b/files/ca/web/css/universal_selectors/index.html index 6aa7931ef9..f625d3d9d9 100644 --- a/files/ca/web/css/universal_selectors/index.html +++ b/files/ca/web/css/universal_selectors/index.html @@ -1,6 +1,6 @@ --- title: Selector Universal -slug: Web/CSS/Selectors_Universal +slug: Web/CSS/Universal_selectors tags: - CSS - NeedsBrowserCompatibility @@ -8,6 +8,7 @@ tags: - Reference - Selectors translation_of: Web/CSS/Universal_selectors +original_slug: Web/CSS/Selectors_Universal ---
{{CSSRef}}
diff --git a/files/ca/web/guide/ajax/getting_started/index.html b/files/ca/web/guide/ajax/getting_started/index.html index ea59270ae8..d93348c916 100644 --- a/files/ca/web/guide/ajax/getting_started/index.html +++ b/files/ca/web/guide/ajax/getting_started/index.html @@ -1,10 +1,11 @@ --- title: Primers passos -slug: Web/Guide/AJAX/Primers_passos +slug: Web/Guide/AJAX/Getting_Started tags: - AJAX - Totes_les_categories translation_of: Web/Guide/AJAX/Getting_Started +original_slug: Web/Guide/AJAX/Primers_passos ---

Aquest article us guiarà a través dels principis bàsics d'AJAX i amb dos pràctics exemples per a anar per feina. diff --git a/files/ca/web/guide/graphics/index.html b/files/ca/web/guide/graphics/index.html index a65c99ec66..26a3d02437 100644 --- a/files/ca/web/guide/graphics/index.html +++ b/files/ca/web/guide/graphics/index.html @@ -1,6 +1,6 @@ --- title: Gràfics en la Web -slug: Web/Guide/Gràfics +slug: Web/Guide/Graphics tags: - 2D - 3D @@ -12,6 +12,7 @@ tags: - WebGL - WebRTC translation_of: Web/Guide/Graphics +original_slug: Web/Guide/Gràfics ---

Els llocs web i les aplicacions sovint necessiten presentar gràfics. Les imatges estàtiques poden visualitzar-se fàcilment usant l'element {{HTMLElement("img")}} o configurant el fons dels elements HTML  utilitzant la propietat {{cssxref("background-image")}}. També podeu construir gràfics sobre la marxa o manipular imatges després de fetes. Aquests articles proporcionen informació sobre com podeu aconseguir-ho.

diff --git a/files/ca/web/guide/html/using_html_sections_and_outlines/index.html b/files/ca/web/guide/html/using_html_sections_and_outlines/index.html index 5da074b341..afe591b845 100644 --- a/files/ca/web/guide/html/using_html_sections_and_outlines/index.html +++ b/files/ca/web/guide/html/using_html_sections_and_outlines/index.html @@ -1,6 +1,6 @@ --- title: Us de seccions i esquemes en HTML 5 -slug: Web/Guide/HTML/Us_de_seccions_i_esquemes_en_HTML +slug: Web/Guide/HTML/Using_HTML_sections_and_outlines tags: - Advanced - Example @@ -12,6 +12,7 @@ tags: - Sections - Web translation_of: Web/Guide/HTML/Using_HTML_sections_and_outlines +original_slug: Web/Guide/HTML/Us_de_seccions_i_esquemes_en_HTML ---

Important: Actualment no existeixen implementacions de l'algorisme d'esquema en els navegadors gràfics o agents d'usuari de tecnologia d'assistència, encara que l'algorisme s'executa a un altre programari, com comprobadors de conformitat. Per tant, l'algorisme d'esquema no pot ser invocat per transmetre l'estructura dels documents als usuaris. Es recomana als autors a utilitzar les capçaleres de rang (h1-h6) per transmetre l'estructura.

diff --git a/files/ca/web/guide/mobile/a_hybrid_approach/index.html b/files/ca/web/guide/mobile/a_hybrid_approach/index.html index da2ee0a625..64c76899c9 100644 --- a/files/ca/web/guide/mobile/a_hybrid_approach/index.html +++ b/files/ca/web/guide/mobile/a_hybrid_approach/index.html @@ -1,7 +1,8 @@ --- title: Una solució híbrida -slug: Web_Development/Mobile/A_hybrid_approach +slug: Web/Guide/Mobile/A_hybrid_approach translation_of: Web/Guide/Mobile/A_hybrid_approach +original_slug: Web_Development/Mobile/A_hybrid_approach ---

Les bales de plata costen de trobar en el desenvolupament web — és molt més probable que empris estratègies que fan ús de vàries tècniques segons les circumstàncies. I això ens du a la nostra tercera solució pel desenvolupament web amigable amb el mòbil, que tracta d'evitar les deficiències de les altres dues solucions (diferents webs i única web amb disseny sensible), combinant-les.

Aquest enfoc híbrid se centra en atacar per separat cada un dels tres objectius del desenvolupament web per als mòbils, i aplicar les millors solucions tècniques disponibles a cada un d'ells. Aquest article presenta aquí una potencial combinació de tècniques, però en altres circumstàncies pot convenir una combinació diferent. El concepte clau que cal recordar i entendre és que per resoldre les teves necesitats concretes pots combinar les tècniques que calgui de banda del servidor amb les aplicades al navegador.

diff --git a/files/ca/web/guide/mobile/index.html b/files/ca/web/guide/mobile/index.html index 84a810eb1c..8d98081f36 100644 --- a/files/ca/web/guide/mobile/index.html +++ b/files/ca/web/guide/mobile/index.html @@ -1,6 +1,6 @@ --- title: Desenvolupament de webs per a mòbils -slug: Web_Development/Mobile +slug: Web/Guide/Mobile tags: - Mobile - NeedsTranslation @@ -8,6 +8,7 @@ tags: - Web Development translation_of: Web/Guide/Mobile translation_of_original: Web_Development/Mobile +original_slug: Web_Development/Mobile ---

Construir webs per ser vistes en dispositius mòbils requereix prendre solucions que assegurin que la web funcioni igual de bé en dispositius mòbils com ho fa en navegadors d'escriptori. Els següents articles descriuen algunes d'aquestes solucions:

    diff --git a/files/ca/web/guide/mobile/mobile-friendliness/index.html b/files/ca/web/guide/mobile/mobile-friendliness/index.html index b5ed1bbdb4..b521896f7e 100644 --- a/files/ca/web/guide/mobile/mobile-friendliness/index.html +++ b/files/ca/web/guide/mobile/mobile-friendliness/index.html @@ -1,7 +1,8 @@ --- title: Webs amigables amb els mòbils -slug: Web_Development/Mobile/Mobile-friendliness +slug: Web/Guide/Mobile/Mobile-friendliness translation_of: Web/Guide/Mobile/Mobile-friendliness +original_slug: Web_Development/Mobile/Mobile-friendliness ---

    Què és una web amigable amb els mòbils?

    Vol dir multitud de coses segons amb qui parlis. Lo millor és veure aquest assumpte prenent com a referent els 3 objectius per a millorar l'experiència dels teus usuaris: presentació, contingut, i rendiment.

    diff --git a/files/ca/web/guide/mobile/separate_sites/index.html b/files/ca/web/guide/mobile/separate_sites/index.html index ceb9160b38..1f290e1f84 100644 --- a/files/ca/web/guide/mobile/separate_sites/index.html +++ b/files/ca/web/guide/mobile/separate_sites/index.html @@ -1,7 +1,8 @@ --- title: Diferents webs per a mòbil i PC -slug: Web_Development/Mobile/Separate_sites +slug: Web/Guide/Mobile/Separate_sites translation_of: Web/Guide/Mobile/Separate_sites +original_slug: Web_Development/Mobile/Separate_sites ---

    La solucio de "webs diferents" per a la construcció de webs accesibles des del mòbil implica crear realment dos webs diferents (de contingut i forma) per als usuaris mòbils i pels que ens visiten des de l'escriptori de l'ordinador/portàtil. Aquesta solució -com les altres- té els seus avantatges però també els seus inconvenients.

    Avantatges

    diff --git a/files/ca/web/html/inline_elements/index.html b/files/ca/web/html/inline_elements/index.html index 0ec8db2c0d..76c2f70120 100644 --- a/files/ca/web/html/inline_elements/index.html +++ b/files/ca/web/html/inline_elements/index.html @@ -1,11 +1,12 @@ --- title: Elements en línia -slug: Web/HTML/Elements_en_línia +slug: Web/HTML/Inline_elements tags: - Beginner - HTML - - 'HTML:Element Reference' + - HTML:Element Reference translation_of: Web/HTML/Inline_elements +original_slug: Web/HTML/Elements_en_línia ---

    Sumari

    diff --git a/files/ca/web/javascript/about_javascript/index.html b/files/ca/web/javascript/about_javascript/index.html index f581aa7021..ab68a22088 100644 --- a/files/ca/web/javascript/about_javascript/index.html +++ b/files/ca/web/javascript/about_javascript/index.html @@ -1,7 +1,8 @@ --- title: Sobre JavaScript -slug: Web/JavaScript/quant_a_JavaScript +slug: Web/JavaScript/About_JavaScript translation_of: Web/JavaScript/About_JavaScript +original_slug: Web/JavaScript/quant_a_JavaScript ---
    {{JsSidebar()}}
    diff --git a/files/ca/web/javascript/guide/expressions_and_operators/index.html b/files/ca/web/javascript/guide/expressions_and_operators/index.html index 9985daa497..7aff311543 100644 --- a/files/ca/web/javascript/guide/expressions_and_operators/index.html +++ b/files/ca/web/javascript/guide/expressions_and_operators/index.html @@ -1,7 +1,8 @@ --- title: Expressions i operadors -slug: Web/JavaScript/Guide/Expressions_i_Operadors +slug: Web/JavaScript/Guide/Expressions_and_Operators translation_of: Web/JavaScript/Guide/Expressions_and_Operators +original_slug: Web/JavaScript/Guide/Expressions_i_Operadors ---
    {{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide/Functions", "Web/JavaScript/Guide/Numbers_and_dates")}}
    diff --git a/files/ca/web/javascript/guide/introduction/index.html b/files/ca/web/javascript/guide/introduction/index.html index 1b598dad9b..540696aa35 100644 --- a/files/ca/web/javascript/guide/introduction/index.html +++ b/files/ca/web/javascript/guide/introduction/index.html @@ -1,7 +1,8 @@ --- title: Introducció -slug: Web/JavaScript/Guide/Introducció +slug: Web/JavaScript/Guide/Introduction translation_of: Web/JavaScript/Guide/Introduction +original_slug: Web/JavaScript/Guide/Introducció ---
    {{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide", "Web/JavaScript/Guide/Grammar_and_types")}}
    diff --git a/files/ca/web/javascript/reference/about/index.html b/files/ca/web/javascript/reference/about/index.html index b1fa0734b3..0da88b4776 100644 --- a/files/ca/web/javascript/reference/about/index.html +++ b/files/ca/web/javascript/reference/about/index.html @@ -1,7 +1,8 @@ --- title: Sobre aquesta referència -slug: Web/JavaScript/Referencia/Sobre +slug: Web/JavaScript/Reference/About translation_of: Web/JavaScript/Reference/About +original_slug: Web/JavaScript/Referencia/Sobre ---

    {{JsSidebar}}

    diff --git a/files/ca/web/javascript/reference/classes/constructor/index.html b/files/ca/web/javascript/reference/classes/constructor/index.html index a0bd6b966f..1dc8379405 100644 --- a/files/ca/web/javascript/reference/classes/constructor/index.html +++ b/files/ca/web/javascript/reference/classes/constructor/index.html @@ -1,7 +1,8 @@ --- title: constructor -slug: Web/JavaScript/Referencia/Classes/constructor +slug: Web/JavaScript/Reference/Classes/constructor translation_of: Web/JavaScript/Reference/Classes/constructor +original_slug: Web/JavaScript/Referencia/Classes/constructor ---
    {{jsSidebar("Classes")}}
    diff --git a/files/ca/web/javascript/reference/classes/index.html b/files/ca/web/javascript/reference/classes/index.html index 23daf7e1ff..080c845943 100644 --- a/files/ca/web/javascript/reference/classes/index.html +++ b/files/ca/web/javascript/reference/classes/index.html @@ -1,6 +1,6 @@ --- title: Classes -slug: Web/JavaScript/Referencia/Classes +slug: Web/JavaScript/Reference/Classes tags: - Classes - ECMAScript 2015 @@ -13,6 +13,7 @@ tags: - Référence(2) - TopicStub translation_of: Web/JavaScript/Reference/Classes +original_slug: Web/JavaScript/Referencia/Classes ---
    {{JsSidebar("Classes")}}
    diff --git a/files/ca/web/javascript/reference/classes/static/index.html b/files/ca/web/javascript/reference/classes/static/index.html index 3255dc1552..c8c015d731 100644 --- a/files/ca/web/javascript/reference/classes/static/index.html +++ b/files/ca/web/javascript/reference/classes/static/index.html @@ -1,7 +1,8 @@ --- title: static -slug: Web/JavaScript/Referencia/Classes/static +slug: Web/JavaScript/Reference/Classes/static translation_of: Web/JavaScript/Reference/Classes/static +original_slug: Web/JavaScript/Referencia/Classes/static ---
    {{jsSidebar("Classes")}}
    diff --git a/files/ca/web/javascript/reference/errors/read-only/index.html b/files/ca/web/javascript/reference/errors/read-only/index.html index 30c70c40dd..ac7a574b86 100644 --- a/files/ca/web/javascript/reference/errors/read-only/index.html +++ b/files/ca/web/javascript/reference/errors/read-only/index.html @@ -1,11 +1,12 @@ --- title: 'TipusError: "x" es només de lectura' -slug: Web/JavaScript/Reference/Errors/Nomes-Lectura +slug: Web/JavaScript/Reference/Errors/Read-only tags: - Errors - JavaScript - TypeError translation_of: Web/JavaScript/Reference/Errors/Read-only +original_slug: Web/JavaScript/Reference/Errors/Nomes-Lectura ---
    {{jsSidebar("Errors")}}
    diff --git a/files/ca/web/javascript/reference/functions/rest_parameters/index.html b/files/ca/web/javascript/reference/functions/rest_parameters/index.html index 68fc5f0bba..2a0a2370e7 100644 --- a/files/ca/web/javascript/reference/functions/rest_parameters/index.html +++ b/files/ca/web/javascript/reference/functions/rest_parameters/index.html @@ -1,7 +1,8 @@ --- title: Paràmetres rest -slug: Web/JavaScript/Reference/Functions/parameters_rest +slug: Web/JavaScript/Reference/Functions/rest_parameters translation_of: Web/JavaScript/Reference/Functions/rest_parameters +original_slug: Web/JavaScript/Reference/Functions/parameters_rest ---
    {{jsSidebar("Functions")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/entries/index.html b/files/ca/web/javascript/reference/global_objects/array/entries/index.html index 8b67c06038..d378295247 100644 --- a/files/ca/web/javascript/reference/global_objects/array/entries/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/entries/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.entries() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/entries +slug: Web/JavaScript/Reference/Global_Objects/Array/entries translation_of: Web/JavaScript/Reference/Global_Objects/Array/entries +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/entries ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/every/index.html b/files/ca/web/javascript/reference/global_objects/array/every/index.html index ad707b4990..cff136ba75 100644 --- a/files/ca/web/javascript/reference/global_objects/array/every/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/every/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.every() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/every +slug: Web/JavaScript/Reference/Global_Objects/Array/every translation_of: Web/JavaScript/Reference/Global_Objects/Array/every +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/every ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/fill/index.html b/files/ca/web/javascript/reference/global_objects/array/fill/index.html index e1952a8407..67ad6677cf 100644 --- a/files/ca/web/javascript/reference/global_objects/array/fill/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/fill/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.fill() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/fill +slug: Web/JavaScript/Reference/Global_Objects/Array/fill translation_of: Web/JavaScript/Reference/Global_Objects/Array/fill +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/fill ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/filter/index.html b/files/ca/web/javascript/reference/global_objects/array/filter/index.html index c1bfec77f3..778102284b 100644 --- a/files/ca/web/javascript/reference/global_objects/array/filter/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/filter/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.filter() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/filter +slug: Web/JavaScript/Reference/Global_Objects/Array/filter translation_of: Web/JavaScript/Reference/Global_Objects/Array/filter +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/filter ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/find/index.html b/files/ca/web/javascript/reference/global_objects/array/find/index.html index 8ee7742c09..ee78fa7de2 100644 --- a/files/ca/web/javascript/reference/global_objects/array/find/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/find/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.find() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/find +slug: Web/JavaScript/Reference/Global_Objects/Array/find translation_of: Web/JavaScript/Reference/Global_Objects/Array/find +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/find ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/findindex/index.html b/files/ca/web/javascript/reference/global_objects/array/findindex/index.html index 5b089bdb98..4fdca8cbbf 100644 --- a/files/ca/web/javascript/reference/global_objects/array/findindex/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/findindex/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.findIndex() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/findIndex +slug: Web/JavaScript/Reference/Global_Objects/Array/findIndex translation_of: Web/JavaScript/Reference/Global_Objects/Array/findIndex +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/findIndex ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/foreach/index.html b/files/ca/web/javascript/reference/global_objects/array/foreach/index.html index 4d391346eb..8af3bee901 100644 --- a/files/ca/web/javascript/reference/global_objects/array/foreach/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/foreach/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.forEach() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/forEach +slug: Web/JavaScript/Reference/Global_Objects/Array/forEach translation_of: Web/JavaScript/Reference/Global_Objects/Array/forEach +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/forEach ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/includes/index.html b/files/ca/web/javascript/reference/global_objects/array/includes/index.html index 9f64b0e117..b788348abb 100644 --- a/files/ca/web/javascript/reference/global_objects/array/includes/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/includes/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.includes() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/includes +slug: Web/JavaScript/Reference/Global_Objects/Array/includes translation_of: Web/JavaScript/Reference/Global_Objects/Array/includes +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/includes ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/index.html b/files/ca/web/javascript/reference/global_objects/array/index.html index da7c400799..0ef89dabaa 100644 --- a/files/ca/web/javascript/reference/global_objects/array/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/index.html @@ -1,7 +1,8 @@ --- title: Array -slug: Web/JavaScript/Referencia/Objectes_globals/Array +slug: Web/JavaScript/Reference/Global_Objects/Array translation_of: Web/JavaScript/Reference/Global_Objects/Array +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/indexof/index.html b/files/ca/web/javascript/reference/global_objects/array/indexof/index.html index 939571a0c8..ad8d5df1a9 100644 --- a/files/ca/web/javascript/reference/global_objects/array/indexof/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/indexof/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.indexOf() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/indexOf +slug: Web/JavaScript/Reference/Global_Objects/Array/indexOf translation_of: Web/JavaScript/Reference/Global_Objects/Array/indexOf +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/indexOf ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/isarray/index.html b/files/ca/web/javascript/reference/global_objects/array/isarray/index.html index 6393dde86f..1b2d93532e 100644 --- a/files/ca/web/javascript/reference/global_objects/array/isarray/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/isarray/index.html @@ -1,7 +1,8 @@ --- title: Array.isArray() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/isArray +slug: Web/JavaScript/Reference/Global_Objects/Array/isArray translation_of: Web/JavaScript/Reference/Global_Objects/Array/isArray +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/isArray ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/join/index.html b/files/ca/web/javascript/reference/global_objects/array/join/index.html index 8d76b4474a..5f844f89db 100644 --- a/files/ca/web/javascript/reference/global_objects/array/join/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/join/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.join() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/join +slug: Web/JavaScript/Reference/Global_Objects/Array/join translation_of: Web/JavaScript/Reference/Global_Objects/Array/join +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/join ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/keys/index.html b/files/ca/web/javascript/reference/global_objects/array/keys/index.html index 7d9df8e1f5..a03db832c5 100644 --- a/files/ca/web/javascript/reference/global_objects/array/keys/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/keys/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.keys() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/keys +slug: Web/JavaScript/Reference/Global_Objects/Array/keys translation_of: Web/JavaScript/Reference/Global_Objects/Array/keys +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/keys ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/lastindexof/index.html b/files/ca/web/javascript/reference/global_objects/array/lastindexof/index.html index 038aa614e5..2f8cd34a5f 100644 --- a/files/ca/web/javascript/reference/global_objects/array/lastindexof/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/lastindexof/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.lastIndexOf() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/lastIndexOf +slug: Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf translation_of: Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/lastIndexOf ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/length/index.html b/files/ca/web/javascript/reference/global_objects/array/length/index.html index a4954565ff..48d1e75e3f 100644 --- a/files/ca/web/javascript/reference/global_objects/array/length/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/length/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.length -slug: Web/JavaScript/Referencia/Objectes_globals/Array/length +slug: Web/JavaScript/Reference/Global_Objects/Array/length translation_of: Web/JavaScript/Reference/Global_Objects/Array/length +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/length ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/map/index.html b/files/ca/web/javascript/reference/global_objects/array/map/index.html index 6f0dc1a0d4..930623a2fb 100644 --- a/files/ca/web/javascript/reference/global_objects/array/map/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/map/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.map() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/map +slug: Web/JavaScript/Reference/Global_Objects/Array/map translation_of: Web/JavaScript/Reference/Global_Objects/Array/map +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/map ---
    {{JSRef("Global_Objects", "Array")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/of/index.html b/files/ca/web/javascript/reference/global_objects/array/of/index.html index efe2d96abd..d6eee05728 100644 --- a/files/ca/web/javascript/reference/global_objects/array/of/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/of/index.html @@ -1,7 +1,8 @@ --- title: Array.of() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/of +slug: Web/JavaScript/Reference/Global_Objects/Array/of translation_of: Web/JavaScript/Reference/Global_Objects/Array/of +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/of ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/pop/index.html b/files/ca/web/javascript/reference/global_objects/array/pop/index.html index 7d2ee3189f..0cc77f2b8a 100644 --- a/files/ca/web/javascript/reference/global_objects/array/pop/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/pop/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.pop() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/pop +slug: Web/JavaScript/Reference/Global_Objects/Array/pop translation_of: Web/JavaScript/Reference/Global_Objects/Array/pop +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/pop ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/push/index.html b/files/ca/web/javascript/reference/global_objects/array/push/index.html index 5770e5a10c..ff50bb46e4 100644 --- a/files/ca/web/javascript/reference/global_objects/array/push/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/push/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.push() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/push +slug: Web/JavaScript/Reference/Global_Objects/Array/push translation_of: Web/JavaScript/Reference/Global_Objects/Array/push +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/push ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/reduce/index.html b/files/ca/web/javascript/reference/global_objects/array/reduce/index.html index fa6253fd0c..e755078556 100644 --- a/files/ca/web/javascript/reference/global_objects/array/reduce/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/reduce/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.reduce() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/Reduce +slug: Web/JavaScript/Reference/Global_Objects/Array/Reduce translation_of: Web/JavaScript/Reference/Global_Objects/Array/Reduce +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/Reduce ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/reverse/index.html b/files/ca/web/javascript/reference/global_objects/array/reverse/index.html index 2528cabdc5..a5e8e63544 100644 --- a/files/ca/web/javascript/reference/global_objects/array/reverse/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/reverse/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.reverse() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/reverse +slug: Web/JavaScript/Reference/Global_Objects/Array/reverse translation_of: Web/JavaScript/Reference/Global_Objects/Array/reverse +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/reverse ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/shift/index.html b/files/ca/web/javascript/reference/global_objects/array/shift/index.html index 7b5fa1b330..b02863aa85 100644 --- a/files/ca/web/javascript/reference/global_objects/array/shift/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/shift/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.shift() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/shift +slug: Web/JavaScript/Reference/Global_Objects/Array/shift translation_of: Web/JavaScript/Reference/Global_Objects/Array/shift +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/shift ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/slice/index.html b/files/ca/web/javascript/reference/global_objects/array/slice/index.html index d181f94a65..1b5f5e812d 100644 --- a/files/ca/web/javascript/reference/global_objects/array/slice/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/slice/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.slice() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/slice +slug: Web/JavaScript/Reference/Global_Objects/Array/slice translation_of: Web/JavaScript/Reference/Global_Objects/Array/slice +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/slice ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/some/index.html b/files/ca/web/javascript/reference/global_objects/array/some/index.html index 7abc1ed76d..cd908daa39 100644 --- a/files/ca/web/javascript/reference/global_objects/array/some/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/some/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.some() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/some +slug: Web/JavaScript/Reference/Global_Objects/Array/some translation_of: Web/JavaScript/Reference/Global_Objects/Array/some +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/some ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/array/splice/index.html b/files/ca/web/javascript/reference/global_objects/array/splice/index.html index c1abada8d9..c47f9df482 100644 --- a/files/ca/web/javascript/reference/global_objects/array/splice/index.html +++ b/files/ca/web/javascript/reference/global_objects/array/splice/index.html @@ -1,7 +1,8 @@ --- title: Array.prototype.splice() -slug: Web/JavaScript/Referencia/Objectes_globals/Array/splice +slug: Web/JavaScript/Reference/Global_Objects/Array/splice translation_of: Web/JavaScript/Reference/Global_Objects/Array/splice +original_slug: Web/JavaScript/Referencia/Objectes_globals/Array/splice ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/boolean/index.html b/files/ca/web/javascript/reference/global_objects/boolean/index.html index 83f2597df9..d0a6d6eef7 100644 --- a/files/ca/web/javascript/reference/global_objects/boolean/index.html +++ b/files/ca/web/javascript/reference/global_objects/boolean/index.html @@ -1,7 +1,8 @@ --- title: Boolean -slug: Web/JavaScript/Referencia/Objectes_globals/Boolean +slug: Web/JavaScript/Reference/Global_Objects/Boolean translation_of: Web/JavaScript/Reference/Global_Objects/Boolean +original_slug: Web/JavaScript/Referencia/Objectes_globals/Boolean ---
    {{JSRef("Global_Objects", "Boolean")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/boolean/tosource/index.html b/files/ca/web/javascript/reference/global_objects/boolean/tosource/index.html index 6b6a1b8b2b..265643c1da 100644 --- a/files/ca/web/javascript/reference/global_objects/boolean/tosource/index.html +++ b/files/ca/web/javascript/reference/global_objects/boolean/tosource/index.html @@ -1,7 +1,8 @@ --- title: Boolean.prototype.toSource() -slug: Web/JavaScript/Referencia/Objectes_globals/Boolean/toSource +slug: Web/JavaScript/Reference/Global_Objects/Boolean/toSource translation_of: Web/JavaScript/Reference/Global_Objects/Boolean/toSource +original_slug: Web/JavaScript/Referencia/Objectes_globals/Boolean/toSource ---
    {{JSRef("Objectes_standard", "Boolean")}} {{non-standard_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/boolean/tostring/index.html b/files/ca/web/javascript/reference/global_objects/boolean/tostring/index.html index 90da6cba3a..1a7aedf3da 100644 --- a/files/ca/web/javascript/reference/global_objects/boolean/tostring/index.html +++ b/files/ca/web/javascript/reference/global_objects/boolean/tostring/index.html @@ -1,7 +1,8 @@ --- title: Boolean.prototype.toString() -slug: Web/JavaScript/Referencia/Objectes_globals/Boolean/toString +slug: Web/JavaScript/Reference/Global_Objects/Boolean/toString translation_of: Web/JavaScript/Reference/Global_Objects/Boolean/toString +original_slug: Web/JavaScript/Referencia/Objectes_globals/Boolean/toString ---
    {{JSRef("Global_Objects", "Boolean")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/boolean/valueof/index.html b/files/ca/web/javascript/reference/global_objects/boolean/valueof/index.html index f99fd3c6c0..100f22e3b0 100644 --- a/files/ca/web/javascript/reference/global_objects/boolean/valueof/index.html +++ b/files/ca/web/javascript/reference/global_objects/boolean/valueof/index.html @@ -1,7 +1,8 @@ --- title: Boolean.prototype.valueOf() -slug: Web/JavaScript/Referencia/Objectes_globals/Boolean/valueOf +slug: Web/JavaScript/Reference/Global_Objects/Boolean/valueOf translation_of: Web/JavaScript/Reference/Global_Objects/Boolean/valueOf +original_slug: Web/JavaScript/Referencia/Objectes_globals/Boolean/valueOf ---
    {{JSRef("Global_Objects", "Boolean")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getdate/index.html b/files/ca/web/javascript/reference/global_objects/date/getdate/index.html index 16808aaae0..e9ba71eaa3 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getdate/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getdate/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getDate() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getDate +slug: Web/JavaScript/Reference/Global_Objects/Date/getDate translation_of: Web/JavaScript/Reference/Global_Objects/Date/getDate +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getDate ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getday/index.html b/files/ca/web/javascript/reference/global_objects/date/getday/index.html index 244562c167..6a620028bc 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getday/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getday/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getDay() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getDay +slug: Web/JavaScript/Reference/Global_Objects/Date/getDay translation_of: Web/JavaScript/Reference/Global_Objects/Date/getDay +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getDay ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getfullyear/index.html b/files/ca/web/javascript/reference/global_objects/date/getfullyear/index.html index 94f14f4332..6e467808fa 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getfullyear/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getfullyear/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getFullYear() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getFullYear +slug: Web/JavaScript/Reference/Global_Objects/Date/getFullYear translation_of: Web/JavaScript/Reference/Global_Objects/Date/getFullYear +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getFullYear ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/gethours/index.html b/files/ca/web/javascript/reference/global_objects/date/gethours/index.html index 3848e96339..ea34821f17 100644 --- a/files/ca/web/javascript/reference/global_objects/date/gethours/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/gethours/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getHours() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getHours +slug: Web/JavaScript/Reference/Global_Objects/Date/getHours translation_of: Web/JavaScript/Reference/Global_Objects/Date/getHours +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getHours ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getmilliseconds/index.html b/files/ca/web/javascript/reference/global_objects/date/getmilliseconds/index.html index d438cf8cad..380e186bd7 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getmilliseconds/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getmilliseconds/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getMilliseconds() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getMilliseconds +slug: Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getMilliseconds ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getminutes/index.html b/files/ca/web/javascript/reference/global_objects/date/getminutes/index.html index 3ae466d56d..61f178907f 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getminutes/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getminutes/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getMinutes() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getMinutes +slug: Web/JavaScript/Reference/Global_Objects/Date/getMinutes translation_of: Web/JavaScript/Reference/Global_Objects/Date/getMinutes +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getMinutes ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getmonth/index.html b/files/ca/web/javascript/reference/global_objects/date/getmonth/index.html index 2631ebef9a..116c4dfea9 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getmonth/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getmonth/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getMonth() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getMonth +slug: Web/JavaScript/Reference/Global_Objects/Date/getMonth translation_of: Web/JavaScript/Reference/Global_Objects/Date/getMonth +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getMonth ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getseconds/index.html b/files/ca/web/javascript/reference/global_objects/date/getseconds/index.html index 790c62e3e9..45c8e5f80d 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getseconds/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getseconds/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getSeconds() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getSeconds +slug: Web/JavaScript/Reference/Global_Objects/Date/getSeconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/getSeconds +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getSeconds ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/gettime/index.html b/files/ca/web/javascript/reference/global_objects/date/gettime/index.html index 20c45f31c5..5c85239ec4 100644 --- a/files/ca/web/javascript/reference/global_objects/date/gettime/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/gettime/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getTime() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getTime +slug: Web/JavaScript/Reference/Global_Objects/Date/getTime translation_of: Web/JavaScript/Reference/Global_Objects/Date/getTime +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getTime ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/gettimezoneoffset/index.html b/files/ca/web/javascript/reference/global_objects/date/gettimezoneoffset/index.html index 8af4d6e9e8..9f67664c59 100644 --- a/files/ca/web/javascript/reference/global_objects/date/gettimezoneoffset/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/gettimezoneoffset/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getTimezoneOffset() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getTimezoneOffset +slug: Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset translation_of: Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getTimezoneOffset ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getutcdate/index.html b/files/ca/web/javascript/reference/global_objects/date/getutcdate/index.html index ee3a8b881f..178c8cad0e 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getutcdate/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getutcdate/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getUTCDate() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCDate +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCDate translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCDate +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCDate ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getutcday/index.html b/files/ca/web/javascript/reference/global_objects/date/getutcday/index.html index b6f992f9a1..038c5af825 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getutcday/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getutcday/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getUTCDay() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCDay +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCDay translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCDay +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCDay ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getutcfullyear/index.html b/files/ca/web/javascript/reference/global_objects/date/getutcfullyear/index.html index 3ca1526e28..f3a86468da 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getutcfullyear/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getutcfullyear/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getUTCFullYear() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCFullYear +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCFullYear ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getutchours/index.html b/files/ca/web/javascript/reference/global_objects/date/getutchours/index.html index f575df92a1..2943f226e1 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getutchours/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getutchours/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getUTCHours() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCHours +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCHours translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCHours +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCHours ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getutcmilliseconds/index.html b/files/ca/web/javascript/reference/global_objects/date/getutcmilliseconds/index.html index d09ac5bded..093b9c3157 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getutcmilliseconds/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getutcmilliseconds/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getUTCMilliseconds() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMilliseconds +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMilliseconds ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getutcminutes/index.html b/files/ca/web/javascript/reference/global_objects/date/getutcminutes/index.html index e18a13c52f..32d2c61830 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getutcminutes/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getutcminutes/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getUTCMinutes() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMinutes +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMinutes ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getutcmonth/index.html b/files/ca/web/javascript/reference/global_objects/date/getutcmonth/index.html index 48ba78349b..7c7556e416 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getutcmonth/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getutcmonth/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getUTCMonth() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMonth +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCMonth ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getutcseconds/index.html b/files/ca/web/javascript/reference/global_objects/date/getutcseconds/index.html index 1f69ca8199..187652befe 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getutcseconds/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getutcseconds/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getUTCSeconds() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCSeconds +slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getUTCSeconds ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/getyear/index.html b/files/ca/web/javascript/reference/global_objects/date/getyear/index.html index 8724b2e03b..6e7a3ccfd0 100644 --- a/files/ca/web/javascript/reference/global_objects/date/getyear/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/getyear/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.getYear() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/getYear +slug: Web/JavaScript/Reference/Global_Objects/Date/getYear translation_of: Web/JavaScript/Reference/Global_Objects/Date/getYear +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/getYear ---
    {{JSRef("Global_Objects", "Date")}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/index.html b/files/ca/web/javascript/reference/global_objects/date/index.html index 3fb5a9368d..734d90ce59 100644 --- a/files/ca/web/javascript/reference/global_objects/date/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/index.html @@ -1,7 +1,8 @@ --- title: Date -slug: Web/JavaScript/Referencia/Objectes_globals/Date +slug: Web/JavaScript/Reference/Global_Objects/Date translation_of: Web/JavaScript/Reference/Global_Objects/Date +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/now/index.html b/files/ca/web/javascript/reference/global_objects/date/now/index.html index c3ef05fa86..35da70bdaf 100644 --- a/files/ca/web/javascript/reference/global_objects/date/now/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/now/index.html @@ -1,7 +1,8 @@ --- title: Date.now() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/now +slug: Web/JavaScript/Reference/Global_Objects/Date/now translation_of: Web/JavaScript/Reference/Global_Objects/Date/now +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/now ---
    {{JSRef("Global_Objects", "Date")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setdate/index.html b/files/ca/web/javascript/reference/global_objects/date/setdate/index.html index 746de134fe..3fcf353338 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setdate/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setdate/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setDate() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setDate +slug: Web/JavaScript/Reference/Global_Objects/Date/setDate translation_of: Web/JavaScript/Reference/Global_Objects/Date/setDate +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setDate ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setfullyear/index.html b/files/ca/web/javascript/reference/global_objects/date/setfullyear/index.html index c29d56ca4e..551d128142 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setfullyear/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setfullyear/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setFullYear() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setFullYear +slug: Web/JavaScript/Reference/Global_Objects/Date/setFullYear translation_of: Web/JavaScript/Reference/Global_Objects/Date/setFullYear +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setFullYear ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/sethours/index.html b/files/ca/web/javascript/reference/global_objects/date/sethours/index.html index 7f660ba344..acfde50c87 100644 --- a/files/ca/web/javascript/reference/global_objects/date/sethours/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/sethours/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setHours() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setHours +slug: Web/JavaScript/Reference/Global_Objects/Date/setHours translation_of: Web/JavaScript/Reference/Global_Objects/Date/setHours +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setHours ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setmilliseconds/index.html b/files/ca/web/javascript/reference/global_objects/date/setmilliseconds/index.html index 53dc451ad4..a7f121a2a9 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setmilliseconds/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setmilliseconds/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setMilliseconds() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setMilliseconds +slug: Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setMilliseconds ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setminutes/index.html b/files/ca/web/javascript/reference/global_objects/date/setminutes/index.html index 7dba61cade..45067d7eaf 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setminutes/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setminutes/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setMinutes() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setMinutes +slug: Web/JavaScript/Reference/Global_Objects/Date/setMinutes translation_of: Web/JavaScript/Reference/Global_Objects/Date/setMinutes +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setMinutes ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setmonth/index.html b/files/ca/web/javascript/reference/global_objects/date/setmonth/index.html index a84f51df7c..b48ad8de43 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setmonth/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setmonth/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setMonth() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setMonth +slug: Web/JavaScript/Reference/Global_Objects/Date/setMonth translation_of: Web/JavaScript/Reference/Global_Objects/Date/setMonth +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setMonth ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setseconds/index.html b/files/ca/web/javascript/reference/global_objects/date/setseconds/index.html index 60ea2c0ae3..fb9e9a7ac7 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setseconds/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setseconds/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setSeconds() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setSeconds +slug: Web/JavaScript/Reference/Global_Objects/Date/setSeconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/setSeconds +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setSeconds ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/settime/index.html b/files/ca/web/javascript/reference/global_objects/date/settime/index.html index 9774f3ee4c..a05e9a3b9d 100644 --- a/files/ca/web/javascript/reference/global_objects/date/settime/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/settime/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setTime() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setTime +slug: Web/JavaScript/Reference/Global_Objects/Date/setTime translation_of: Web/JavaScript/Reference/Global_Objects/Date/setTime +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setTime ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setutcdate/index.html b/files/ca/web/javascript/reference/global_objects/date/setutcdate/index.html index 109178f66a..8c30510fd9 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setutcdate/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setutcdate/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setUTCDate() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCDate +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCDate translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCDate +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCDate ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setutcfullyear/index.html b/files/ca/web/javascript/reference/global_objects/date/setutcfullyear/index.html index 55185a431b..3a3d274c1d 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setutcfullyear/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setutcfullyear/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setUTCFullYear() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCFullYear +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCFullYear ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setutchours/index.html b/files/ca/web/javascript/reference/global_objects/date/setutchours/index.html index 3c75ea903c..e2c4deecb2 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setutchours/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setutchours/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setUTCHours() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCHours +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCHours translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCHours +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCHours ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setutcmilliseconds/index.html b/files/ca/web/javascript/reference/global_objects/date/setutcmilliseconds/index.html index e3265e247f..14385ca42d 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setutcmilliseconds/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setutcmilliseconds/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setUTCMilliseconds() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMilliseconds +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMilliseconds ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setutcminutes/index.html b/files/ca/web/javascript/reference/global_objects/date/setutcminutes/index.html index 5551364e52..50d71e72a8 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setutcminutes/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setutcminutes/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setUTCMinutes() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMinutes +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMinutes ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setutcmonth/index.html b/files/ca/web/javascript/reference/global_objects/date/setutcmonth/index.html index e06f0fba64..da453f5a89 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setutcmonth/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setutcmonth/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setUTCMonth() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMonth +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCMonth ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setutcseconds/index.html b/files/ca/web/javascript/reference/global_objects/date/setutcseconds/index.html index 66f33a9e1b..f0f61fb1fe 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setutcseconds/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setutcseconds/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setUTCSeconds() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCSeconds +slug: Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setUTCSeconds ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/setyear/index.html b/files/ca/web/javascript/reference/global_objects/date/setyear/index.html index ead16f2d21..f2e0a31ad2 100644 --- a/files/ca/web/javascript/reference/global_objects/date/setyear/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/setyear/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.setYear() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/setYear +slug: Web/JavaScript/Reference/Global_Objects/Date/setYear translation_of: Web/JavaScript/Reference/Global_Objects/Date/setYear +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/setYear ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/todatestring/index.html b/files/ca/web/javascript/reference/global_objects/date/todatestring/index.html index 9548215179..8be13b94d5 100644 --- a/files/ca/web/javascript/reference/global_objects/date/todatestring/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/todatestring/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.toDateString() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/toDateString +slug: Web/JavaScript/Reference/Global_Objects/Date/toDateString translation_of: Web/JavaScript/Reference/Global_Objects/Date/toDateString +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/toDateString ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/togmtstring/index.html b/files/ca/web/javascript/reference/global_objects/date/togmtstring/index.html index 08e63be739..785829624b 100644 --- a/files/ca/web/javascript/reference/global_objects/date/togmtstring/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/togmtstring/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.toGMTString() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/toGMTString +slug: Web/JavaScript/Reference/Global_Objects/Date/toGMTString translation_of: Web/JavaScript/Reference/Global_Objects/Date/toGMTString +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/toGMTString ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/toisostring/index.html b/files/ca/web/javascript/reference/global_objects/date/toisostring/index.html index 759e53225c..527230fe35 100644 --- a/files/ca/web/javascript/reference/global_objects/date/toisostring/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/toisostring/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.toISOString() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/toISOString +slug: Web/JavaScript/Reference/Global_Objects/Date/toISOString translation_of: Web/JavaScript/Reference/Global_Objects/Date/toISOString +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/toISOString ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/tojson/index.html b/files/ca/web/javascript/reference/global_objects/date/tojson/index.html index 8b583470bf..e4b6f3c38f 100644 --- a/files/ca/web/javascript/reference/global_objects/date/tojson/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/tojson/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.toJSON() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/toJSON +slug: Web/JavaScript/Reference/Global_Objects/Date/toJSON translation_of: Web/JavaScript/Reference/Global_Objects/Date/toJSON +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/toJSON ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/tostring/index.html b/files/ca/web/javascript/reference/global_objects/date/tostring/index.html index 8482fe5298..1dd3ae75ca 100644 --- a/files/ca/web/javascript/reference/global_objects/date/tostring/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/tostring/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.toString() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/toString +slug: Web/JavaScript/Reference/Global_Objects/Date/toString translation_of: Web/JavaScript/Reference/Global_Objects/Date/toString +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/toString ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/totimestring/index.html b/files/ca/web/javascript/reference/global_objects/date/totimestring/index.html index aac8de7a85..b3c48ca1a5 100644 --- a/files/ca/web/javascript/reference/global_objects/date/totimestring/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/totimestring/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.toTimeString() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/toTimeString +slug: Web/JavaScript/Reference/Global_Objects/Date/toTimeString translation_of: Web/JavaScript/Reference/Global_Objects/Date/toTimeString +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/toTimeString ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/utc/index.html b/files/ca/web/javascript/reference/global_objects/date/utc/index.html index 37bb2bc369..905ef685a6 100644 --- a/files/ca/web/javascript/reference/global_objects/date/utc/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/utc/index.html @@ -1,7 +1,8 @@ --- title: Date.UTC() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/UTC +slug: Web/JavaScript/Reference/Global_Objects/Date/UTC translation_of: Web/JavaScript/Reference/Global_Objects/Date/UTC +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/UTC ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/date/valueof/index.html b/files/ca/web/javascript/reference/global_objects/date/valueof/index.html index 6c5f810ead..9ff6159f68 100644 --- a/files/ca/web/javascript/reference/global_objects/date/valueof/index.html +++ b/files/ca/web/javascript/reference/global_objects/date/valueof/index.html @@ -1,7 +1,8 @@ --- title: Date.prototype.valueOf() -slug: Web/JavaScript/Referencia/Objectes_globals/Date/valueOf +slug: Web/JavaScript/Reference/Global_Objects/Date/valueOf translation_of: Web/JavaScript/Reference/Global_Objects/Date/valueOf +original_slug: Web/JavaScript/Referencia/Objectes_globals/Date/valueOf ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/error/columnnumber/index.html b/files/ca/web/javascript/reference/global_objects/error/columnnumber/index.html index 377c797cd3..cfa72cb182 100644 --- a/files/ca/web/javascript/reference/global_objects/error/columnnumber/index.html +++ b/files/ca/web/javascript/reference/global_objects/error/columnnumber/index.html @@ -1,7 +1,8 @@ --- title: Error.prototype.columnNumber -slug: Web/JavaScript/Referencia/Objectes_globals/Error/columnNumber +slug: Web/JavaScript/Reference/Global_Objects/Error/columnNumber translation_of: Web/JavaScript/Reference/Global_Objects/Error/columnNumber +original_slug: Web/JavaScript/Referencia/Objectes_globals/Error/columnNumber ---
    {{JSRef("Global_Objects", "Error", "EvalError,InternalError,RangeError,ReferenceError,SyntaxError,TypeError,URIError")}} {{non-standard_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/error/filename/index.html b/files/ca/web/javascript/reference/global_objects/error/filename/index.html index dcca532f86..9d38712cf4 100644 --- a/files/ca/web/javascript/reference/global_objects/error/filename/index.html +++ b/files/ca/web/javascript/reference/global_objects/error/filename/index.html @@ -1,7 +1,8 @@ --- title: Error.prototype.fileName -slug: Web/JavaScript/Referencia/Objectes_globals/Error/fileName +slug: Web/JavaScript/Reference/Global_Objects/Error/fileName translation_of: Web/JavaScript/Reference/Global_Objects/Error/fileName +original_slug: Web/JavaScript/Referencia/Objectes_globals/Error/fileName ---
    {{JSRef("Global_Objects", "Error", "EvalError,InternalError,RangeError,ReferenceError,SyntaxError,TypeError,URIError")}} {{non-standard_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/error/index.html b/files/ca/web/javascript/reference/global_objects/error/index.html index 2e1592edc5..5351f96793 100644 --- a/files/ca/web/javascript/reference/global_objects/error/index.html +++ b/files/ca/web/javascript/reference/global_objects/error/index.html @@ -1,7 +1,8 @@ --- title: Error -slug: Web/JavaScript/Referencia/Objectes_globals/Error +slug: Web/JavaScript/Reference/Global_Objects/Error translation_of: Web/JavaScript/Reference/Global_Objects/Error +original_slug: Web/JavaScript/Referencia/Objectes_globals/Error ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/error/linenumber/index.html b/files/ca/web/javascript/reference/global_objects/error/linenumber/index.html index 7b85f29c19..a474c0abf0 100644 --- a/files/ca/web/javascript/reference/global_objects/error/linenumber/index.html +++ b/files/ca/web/javascript/reference/global_objects/error/linenumber/index.html @@ -1,7 +1,8 @@ --- title: Error.prototype.lineNumber -slug: Web/JavaScript/Referencia/Objectes_globals/Error/lineNumber +slug: Web/JavaScript/Reference/Global_Objects/Error/lineNumber translation_of: Web/JavaScript/Reference/Global_Objects/Error/lineNumber +original_slug: Web/JavaScript/Referencia/Objectes_globals/Error/lineNumber ---
    {{JSRef("Global_Objects", "Error", "EvalError,InternalError,RangeError,ReferenceError,SyntaxError,TypeError,URIError")}} {{non-standard_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/error/message/index.html b/files/ca/web/javascript/reference/global_objects/error/message/index.html index 4aa07268fa..5d477ef064 100644 --- a/files/ca/web/javascript/reference/global_objects/error/message/index.html +++ b/files/ca/web/javascript/reference/global_objects/error/message/index.html @@ -1,7 +1,8 @@ --- title: Error.prototype.message -slug: Web/JavaScript/Referencia/Objectes_globals/Error/message +slug: Web/JavaScript/Reference/Global_Objects/Error/message translation_of: Web/JavaScript/Reference/Global_Objects/Error/message +original_slug: Web/JavaScript/Referencia/Objectes_globals/Error/message ---
    {{JSRef("Global_Objects", "Error", "EvalError,InternalError,RangeError,ReferenceError,SyntaxError,TypeError,URIError")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/error/name/index.html b/files/ca/web/javascript/reference/global_objects/error/name/index.html index 995ecafd5f..8e25f4be5f 100644 --- a/files/ca/web/javascript/reference/global_objects/error/name/index.html +++ b/files/ca/web/javascript/reference/global_objects/error/name/index.html @@ -1,7 +1,8 @@ --- title: Error.prototype.name -slug: Web/JavaScript/Referencia/Objectes_globals/Error/name +slug: Web/JavaScript/Reference/Global_Objects/Error/name translation_of: Web/JavaScript/Reference/Global_Objects/Error/name +original_slug: Web/JavaScript/Referencia/Objectes_globals/Error/name ---
    {{JSRef("Global_Objects", "Error", "EvalError,InternalError,RangeError,ReferenceError,SyntaxError,TypeError,URIError")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/error/stack/index.html b/files/ca/web/javascript/reference/global_objects/error/stack/index.html index aa41949423..b49247b301 100644 --- a/files/ca/web/javascript/reference/global_objects/error/stack/index.html +++ b/files/ca/web/javascript/reference/global_objects/error/stack/index.html @@ -1,7 +1,8 @@ --- title: Error.prototype.stack -slug: Web/JavaScript/Referencia/Objectes_globals/Error/Stack +slug: Web/JavaScript/Reference/Global_Objects/Error/Stack translation_of: Web/JavaScript/Reference/Global_Objects/Error/Stack +original_slug: Web/JavaScript/Referencia/Objectes_globals/Error/Stack ---
    {{JSRef("Global_Objects", "Error", "EvalError,InternalError,RangeError,ReferenceError,SyntaxError,TypeError,URIError")}} {{non-standard_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/error/tosource/index.html b/files/ca/web/javascript/reference/global_objects/error/tosource/index.html index c766aa312b..e68daf137e 100644 --- a/files/ca/web/javascript/reference/global_objects/error/tosource/index.html +++ b/files/ca/web/javascript/reference/global_objects/error/tosource/index.html @@ -1,7 +1,8 @@ --- title: Error.prototype.toSource() -slug: Web/JavaScript/Referencia/Objectes_globals/Error/toSource +slug: Web/JavaScript/Reference/Global_Objects/Error/toSource translation_of: Web/JavaScript/Reference/Global_Objects/Error/toSource +original_slug: Web/JavaScript/Referencia/Objectes_globals/Error/toSource ---
    {{JSRef}} {{non-standard_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/error/tostring/index.html b/files/ca/web/javascript/reference/global_objects/error/tostring/index.html index 79fd20f77f..64ce986a83 100644 --- a/files/ca/web/javascript/reference/global_objects/error/tostring/index.html +++ b/files/ca/web/javascript/reference/global_objects/error/tostring/index.html @@ -1,7 +1,8 @@ --- title: Error.prototype.toString() -slug: Web/JavaScript/Referencia/Objectes_globals/Error/toString +slug: Web/JavaScript/Reference/Global_Objects/Error/toString translation_of: Web/JavaScript/Reference/Global_Objects/Error/toString +original_slug: Web/JavaScript/Referencia/Objectes_globals/Error/toString ---
    {{JSRef("Global_Objects", "Error", "EvalError,InternalError,RangeError,ReferenceError,SyntaxError,TypeError,URIError")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/index.html b/files/ca/web/javascript/reference/global_objects/index.html index 60bd0333f7..93bf7ad9bc 100644 --- a/files/ca/web/javascript/reference/global_objects/index.html +++ b/files/ca/web/javascript/reference/global_objects/index.html @@ -1,7 +1,8 @@ --- title: Objectes Standard -slug: Web/JavaScript/Referencia/Objectes_globals +slug: Web/JavaScript/Reference/Global_Objects translation_of: Web/JavaScript/Reference/Global_Objects +original_slug: Web/JavaScript/Referencia/Objectes_globals ---
    {{jsSidebar("Objects")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/infinity/index.html b/files/ca/web/javascript/reference/global_objects/infinity/index.html index 409609bfd2..bb06d6e1fa 100644 --- a/files/ca/web/javascript/reference/global_objects/infinity/index.html +++ b/files/ca/web/javascript/reference/global_objects/infinity/index.html @@ -1,7 +1,8 @@ --- title: Infinity -slug: Web/JavaScript/Referencia/Objectes_globals/Infinity +slug: Web/JavaScript/Reference/Global_Objects/Infinity translation_of: Web/JavaScript/Reference/Global_Objects/Infinity +original_slug: Web/JavaScript/Referencia/Objectes_globals/Infinity ---
    diff --git a/files/ca/web/javascript/reference/global_objects/json/index.html b/files/ca/web/javascript/reference/global_objects/json/index.html index efc86409e6..95c3af9636 100644 --- a/files/ca/web/javascript/reference/global_objects/json/index.html +++ b/files/ca/web/javascript/reference/global_objects/json/index.html @@ -1,7 +1,8 @@ --- title: JSON -slug: Web/JavaScript/Referencia/Objectes_globals/JSON +slug: Web/JavaScript/Reference/Global_Objects/JSON translation_of: Web/JavaScript/Reference/Global_Objects/JSON +original_slug: Web/JavaScript/Referencia/Objectes_globals/JSON ---
    {{JSRef("Global_Objects", "JSON")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/map/clear/index.html b/files/ca/web/javascript/reference/global_objects/map/clear/index.html index f29cc93eef..098655f667 100644 --- a/files/ca/web/javascript/reference/global_objects/map/clear/index.html +++ b/files/ca/web/javascript/reference/global_objects/map/clear/index.html @@ -1,7 +1,8 @@ --- title: Map.prototype.clear() -slug: Web/JavaScript/Referencia/Objectes_globals/Map/clear +slug: Web/JavaScript/Reference/Global_Objects/Map/clear translation_of: Web/JavaScript/Reference/Global_Objects/Map/clear +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map/clear ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/map/delete/index.html b/files/ca/web/javascript/reference/global_objects/map/delete/index.html index 01c1b2cf28..ee22dcbd0d 100644 --- a/files/ca/web/javascript/reference/global_objects/map/delete/index.html +++ b/files/ca/web/javascript/reference/global_objects/map/delete/index.html @@ -1,7 +1,8 @@ --- title: Map.prototype.delete() -slug: Web/JavaScript/Referencia/Objectes_globals/Map/delete +slug: Web/JavaScript/Reference/Global_Objects/Map/delete translation_of: Web/JavaScript/Reference/Global_Objects/Map/delete +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map/delete ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/map/entries/index.html b/files/ca/web/javascript/reference/global_objects/map/entries/index.html index d5f6942695..ed83a8d946 100644 --- a/files/ca/web/javascript/reference/global_objects/map/entries/index.html +++ b/files/ca/web/javascript/reference/global_objects/map/entries/index.html @@ -1,7 +1,8 @@ --- title: Map.prototype.entries() -slug: Web/JavaScript/Referencia/Objectes_globals/Map/entries +slug: Web/JavaScript/Reference/Global_Objects/Map/entries translation_of: Web/JavaScript/Reference/Global_Objects/Map/entries +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map/entries ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/map/foreach/index.html b/files/ca/web/javascript/reference/global_objects/map/foreach/index.html index 7097bbee3d..16a6625eb6 100644 --- a/files/ca/web/javascript/reference/global_objects/map/foreach/index.html +++ b/files/ca/web/javascript/reference/global_objects/map/foreach/index.html @@ -1,7 +1,8 @@ --- title: Map.prototype.forEach() -slug: Web/JavaScript/Referencia/Objectes_globals/Map/forEach +slug: Web/JavaScript/Reference/Global_Objects/Map/forEach translation_of: Web/JavaScript/Reference/Global_Objects/Map/forEach +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map/forEach ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/map/get/index.html b/files/ca/web/javascript/reference/global_objects/map/get/index.html index ec345df059..c1dcf95533 100644 --- a/files/ca/web/javascript/reference/global_objects/map/get/index.html +++ b/files/ca/web/javascript/reference/global_objects/map/get/index.html @@ -1,7 +1,8 @@ --- title: Map.prototype.get() -slug: Web/JavaScript/Referencia/Objectes_globals/Map/get +slug: Web/JavaScript/Reference/Global_Objects/Map/get translation_of: Web/JavaScript/Reference/Global_Objects/Map/get +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map/get ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/map/has/index.html b/files/ca/web/javascript/reference/global_objects/map/has/index.html index d0ce1bec54..6e7a02d543 100644 --- a/files/ca/web/javascript/reference/global_objects/map/has/index.html +++ b/files/ca/web/javascript/reference/global_objects/map/has/index.html @@ -1,7 +1,8 @@ --- title: Map.prototype.has() -slug: Web/JavaScript/Referencia/Objectes_globals/Map/has +slug: Web/JavaScript/Reference/Global_Objects/Map/has translation_of: Web/JavaScript/Reference/Global_Objects/Map/has +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map/has ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/map/index.html b/files/ca/web/javascript/reference/global_objects/map/index.html index 8e2bb647bd..678d5120fa 100644 --- a/files/ca/web/javascript/reference/global_objects/map/index.html +++ b/files/ca/web/javascript/reference/global_objects/map/index.html @@ -1,7 +1,8 @@ --- title: Map -slug: Web/JavaScript/Referencia/Objectes_globals/Map +slug: Web/JavaScript/Reference/Global_Objects/Map translation_of: Web/JavaScript/Reference/Global_Objects/Map +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map ---
    {{JSRef("Global_Objects", "Map")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/map/keys/index.html b/files/ca/web/javascript/reference/global_objects/map/keys/index.html index 47c975a891..1717cb8285 100644 --- a/files/ca/web/javascript/reference/global_objects/map/keys/index.html +++ b/files/ca/web/javascript/reference/global_objects/map/keys/index.html @@ -1,7 +1,8 @@ --- title: Map.prototype.keys() -slug: Web/JavaScript/Referencia/Objectes_globals/Map/keys +slug: Web/JavaScript/Reference/Global_Objects/Map/keys translation_of: Web/JavaScript/Reference/Global_Objects/Map/keys +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map/keys ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/map/set/index.html b/files/ca/web/javascript/reference/global_objects/map/set/index.html index 3b77060831..b27969e706 100644 --- a/files/ca/web/javascript/reference/global_objects/map/set/index.html +++ b/files/ca/web/javascript/reference/global_objects/map/set/index.html @@ -1,7 +1,8 @@ --- title: Map.prototype.set() -slug: Web/JavaScript/Referencia/Objectes_globals/Map/set +slug: Web/JavaScript/Reference/Global_Objects/Map/set translation_of: Web/JavaScript/Reference/Global_Objects/Map/set +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map/set ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/map/size/index.html b/files/ca/web/javascript/reference/global_objects/map/size/index.html index aa70c7d84b..c88b497993 100644 --- a/files/ca/web/javascript/reference/global_objects/map/size/index.html +++ b/files/ca/web/javascript/reference/global_objects/map/size/index.html @@ -1,7 +1,8 @@ --- title: Map.prototype.size -slug: Web/JavaScript/Referencia/Objectes_globals/Map/size +slug: Web/JavaScript/Reference/Global_Objects/Map/size translation_of: Web/JavaScript/Reference/Global_Objects/Map/size +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map/size ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/map/values/index.html b/files/ca/web/javascript/reference/global_objects/map/values/index.html index f1b23be7e7..fc1a14a417 100644 --- a/files/ca/web/javascript/reference/global_objects/map/values/index.html +++ b/files/ca/web/javascript/reference/global_objects/map/values/index.html @@ -1,7 +1,8 @@ --- title: Map.prototype.values() -slug: Web/JavaScript/Referencia/Objectes_globals/Map/values +slug: Web/JavaScript/Reference/Global_Objects/Map/values translation_of: Web/JavaScript/Reference/Global_Objects/Map/values +original_slug: Web/JavaScript/Referencia/Objectes_globals/Map/values ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/abs/index.html b/files/ca/web/javascript/reference/global_objects/math/abs/index.html index 34d3e5beb9..db78802c1f 100644 --- a/files/ca/web/javascript/reference/global_objects/math/abs/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/abs/index.html @@ -1,7 +1,8 @@ --- title: Math.abs() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/abs +slug: Web/JavaScript/Reference/Global_Objects/Math/abs translation_of: Web/JavaScript/Reference/Global_Objects/Math/abs +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/abs ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/acos/index.html b/files/ca/web/javascript/reference/global_objects/math/acos/index.html index fdf781a4e2..0adb3c11e4 100644 --- a/files/ca/web/javascript/reference/global_objects/math/acos/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/acos/index.html @@ -1,7 +1,8 @@ --- title: Math.acos() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/acos +slug: Web/JavaScript/Reference/Global_Objects/Math/acos translation_of: Web/JavaScript/Reference/Global_Objects/Math/acos +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/acos ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/acosh/index.html b/files/ca/web/javascript/reference/global_objects/math/acosh/index.html index edfe1dd8c0..08561aeed1 100644 --- a/files/ca/web/javascript/reference/global_objects/math/acosh/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/acosh/index.html @@ -1,7 +1,8 @@ --- title: Math.acosh() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/acosh +slug: Web/JavaScript/Reference/Global_Objects/Math/acosh translation_of: Web/JavaScript/Reference/Global_Objects/Math/acosh +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/acosh ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/asin/index.html b/files/ca/web/javascript/reference/global_objects/math/asin/index.html index 81288af5b6..5174ee4643 100644 --- a/files/ca/web/javascript/reference/global_objects/math/asin/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/asin/index.html @@ -1,7 +1,8 @@ --- title: Math.asin() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/asin +slug: Web/JavaScript/Reference/Global_Objects/Math/asin translation_of: Web/JavaScript/Reference/Global_Objects/Math/asin +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/asin ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/asinh/index.html b/files/ca/web/javascript/reference/global_objects/math/asinh/index.html index 9a249bb202..52c70da63f 100644 --- a/files/ca/web/javascript/reference/global_objects/math/asinh/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/asinh/index.html @@ -1,7 +1,8 @@ --- title: Math.asinh() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/asinh +slug: Web/JavaScript/Reference/Global_Objects/Math/asinh translation_of: Web/JavaScript/Reference/Global_Objects/Math/asinh +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/asinh ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/atan/index.html b/files/ca/web/javascript/reference/global_objects/math/atan/index.html index 034578fd54..01832ac269 100644 --- a/files/ca/web/javascript/reference/global_objects/math/atan/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/atan/index.html @@ -1,7 +1,8 @@ --- title: Math.atan() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/atan +slug: Web/JavaScript/Reference/Global_Objects/Math/atan translation_of: Web/JavaScript/Reference/Global_Objects/Math/atan +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/atan ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/atan2/index.html b/files/ca/web/javascript/reference/global_objects/math/atan2/index.html index 2816bb40b8..6cd84d1004 100644 --- a/files/ca/web/javascript/reference/global_objects/math/atan2/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/atan2/index.html @@ -1,7 +1,8 @@ --- title: Math.atan2() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/atan2 +slug: Web/JavaScript/Reference/Global_Objects/Math/atan2 translation_of: Web/JavaScript/Reference/Global_Objects/Math/atan2 +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/atan2 ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/atanh/index.html b/files/ca/web/javascript/reference/global_objects/math/atanh/index.html index 8a6b7cc2c8..2b492dbdcc 100644 --- a/files/ca/web/javascript/reference/global_objects/math/atanh/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/atanh/index.html @@ -1,7 +1,8 @@ --- title: Math.atanh() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/atanh +slug: Web/JavaScript/Reference/Global_Objects/Math/atanh translation_of: Web/JavaScript/Reference/Global_Objects/Math/atanh +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/atanh ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/cbrt/index.html b/files/ca/web/javascript/reference/global_objects/math/cbrt/index.html index 70d6767183..a973b5e724 100644 --- a/files/ca/web/javascript/reference/global_objects/math/cbrt/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/cbrt/index.html @@ -1,7 +1,8 @@ --- title: Math.cbrt() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/cbrt +slug: Web/JavaScript/Reference/Global_Objects/Math/cbrt translation_of: Web/JavaScript/Reference/Global_Objects/Math/cbrt +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/cbrt ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/ceil/index.html b/files/ca/web/javascript/reference/global_objects/math/ceil/index.html index a96880eecd..5495818286 100644 --- a/files/ca/web/javascript/reference/global_objects/math/ceil/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/ceil/index.html @@ -1,7 +1,8 @@ --- title: Math.ceil() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/ceil +slug: Web/JavaScript/Reference/Global_Objects/Math/ceil translation_of: Web/JavaScript/Reference/Global_Objects/Math/ceil +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/ceil ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/clz32/index.html b/files/ca/web/javascript/reference/global_objects/math/clz32/index.html index 5cde08c7a8..74c1cecef7 100644 --- a/files/ca/web/javascript/reference/global_objects/math/clz32/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/clz32/index.html @@ -1,7 +1,8 @@ --- title: Math.clz32() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/clz32 +slug: Web/JavaScript/Reference/Global_Objects/Math/clz32 translation_of: Web/JavaScript/Reference/Global_Objects/Math/clz32 +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/clz32 ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/cos/index.html b/files/ca/web/javascript/reference/global_objects/math/cos/index.html index 0236b38c9c..00d090ed20 100644 --- a/files/ca/web/javascript/reference/global_objects/math/cos/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/cos/index.html @@ -1,7 +1,8 @@ --- title: Math.cos() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/cos +slug: Web/JavaScript/Reference/Global_Objects/Math/cos translation_of: Web/JavaScript/Reference/Global_Objects/Math/cos +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/cos ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/cosh/index.html b/files/ca/web/javascript/reference/global_objects/math/cosh/index.html index 00ebc259b9..f3d4dffb1b 100644 --- a/files/ca/web/javascript/reference/global_objects/math/cosh/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/cosh/index.html @@ -1,7 +1,8 @@ --- title: Math.cosh() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/cosh +slug: Web/JavaScript/Reference/Global_Objects/Math/cosh translation_of: Web/JavaScript/Reference/Global_Objects/Math/cosh +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/cosh ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/e/index.html b/files/ca/web/javascript/reference/global_objects/math/e/index.html index efe7476396..90dba24a0d 100644 --- a/files/ca/web/javascript/reference/global_objects/math/e/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/e/index.html @@ -1,7 +1,8 @@ --- title: Math.E -slug: Web/JavaScript/Referencia/Objectes_globals/Math/E +slug: Web/JavaScript/Reference/Global_Objects/Math/E translation_of: Web/JavaScript/Reference/Global_Objects/Math/E +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/E ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/exp/index.html b/files/ca/web/javascript/reference/global_objects/math/exp/index.html index c6d6c6c098..2b1b92004f 100644 --- a/files/ca/web/javascript/reference/global_objects/math/exp/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/exp/index.html @@ -1,7 +1,8 @@ --- title: Math.exp() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/exp +slug: Web/JavaScript/Reference/Global_Objects/Math/exp translation_of: Web/JavaScript/Reference/Global_Objects/Math/exp +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/exp ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/expm1/index.html b/files/ca/web/javascript/reference/global_objects/math/expm1/index.html index b8055fba45..017cdc895a 100644 --- a/files/ca/web/javascript/reference/global_objects/math/expm1/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/expm1/index.html @@ -1,7 +1,8 @@ --- title: Math.expm1() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/expm1 +slug: Web/JavaScript/Reference/Global_Objects/Math/expm1 translation_of: Web/JavaScript/Reference/Global_Objects/Math/expm1 +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/expm1 ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/floor/index.html b/files/ca/web/javascript/reference/global_objects/math/floor/index.html index 4a83b8d0e8..f86e9d6ed8 100644 --- a/files/ca/web/javascript/reference/global_objects/math/floor/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/floor/index.html @@ -1,7 +1,8 @@ --- title: Math.floor() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/floor +slug: Web/JavaScript/Reference/Global_Objects/Math/floor translation_of: Web/JavaScript/Reference/Global_Objects/Math/floor +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/floor ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/fround/index.html b/files/ca/web/javascript/reference/global_objects/math/fround/index.html index 7411993dbc..dd4cd2c762 100644 --- a/files/ca/web/javascript/reference/global_objects/math/fround/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/fround/index.html @@ -1,7 +1,8 @@ --- title: Math.fround() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/fround +slug: Web/JavaScript/Reference/Global_Objects/Math/fround translation_of: Web/JavaScript/Reference/Global_Objects/Math/fround +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/fround ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/hypot/index.html b/files/ca/web/javascript/reference/global_objects/math/hypot/index.html index e29bb754f1..c7a8994995 100644 --- a/files/ca/web/javascript/reference/global_objects/math/hypot/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/hypot/index.html @@ -1,7 +1,8 @@ --- title: Math.hypot() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/hypot +slug: Web/JavaScript/Reference/Global_Objects/Math/hypot translation_of: Web/JavaScript/Reference/Global_Objects/Math/hypot +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/hypot ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/imul/index.html b/files/ca/web/javascript/reference/global_objects/math/imul/index.html index 53050a9cd6..a82ab70eb5 100644 --- a/files/ca/web/javascript/reference/global_objects/math/imul/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/imul/index.html @@ -1,7 +1,8 @@ --- title: Math.imul() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/imul +slug: Web/JavaScript/Reference/Global_Objects/Math/imul translation_of: Web/JavaScript/Reference/Global_Objects/Math/imul +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/imul ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/index.html b/files/ca/web/javascript/reference/global_objects/math/index.html index d493f51b40..aaaf1f008c 100644 --- a/files/ca/web/javascript/reference/global_objects/math/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/index.html @@ -1,7 +1,8 @@ --- title: Math -slug: Web/JavaScript/Referencia/Objectes_globals/Math +slug: Web/JavaScript/Reference/Global_Objects/Math translation_of: Web/JavaScript/Reference/Global_Objects/Math +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/ln10/index.html b/files/ca/web/javascript/reference/global_objects/math/ln10/index.html index 42107c85f5..49c3f52a1a 100644 --- a/files/ca/web/javascript/reference/global_objects/math/ln10/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/ln10/index.html @@ -1,7 +1,8 @@ --- title: Math.LN10 -slug: Web/JavaScript/Referencia/Objectes_globals/Math/LN10 +slug: Web/JavaScript/Reference/Global_Objects/Math/LN10 translation_of: Web/JavaScript/Reference/Global_Objects/Math/LN10 +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/LN10 ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/ln2/index.html b/files/ca/web/javascript/reference/global_objects/math/ln2/index.html index 92cf2693f2..1bd054bec6 100644 --- a/files/ca/web/javascript/reference/global_objects/math/ln2/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/ln2/index.html @@ -1,7 +1,8 @@ --- title: Math.LN2 -slug: Web/JavaScript/Referencia/Objectes_globals/Math/LN2 +slug: Web/JavaScript/Reference/Global_Objects/Math/LN2 translation_of: Web/JavaScript/Reference/Global_Objects/Math/LN2 +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/LN2 ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/log/index.html b/files/ca/web/javascript/reference/global_objects/math/log/index.html index a3d8467ae5..e92c8c05d2 100644 --- a/files/ca/web/javascript/reference/global_objects/math/log/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/log/index.html @@ -1,7 +1,8 @@ --- title: Math.log() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/log +slug: Web/JavaScript/Reference/Global_Objects/Math/log translation_of: Web/JavaScript/Reference/Global_Objects/Math/log +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/log ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/log10/index.html b/files/ca/web/javascript/reference/global_objects/math/log10/index.html index 1a82f34848..b752401732 100644 --- a/files/ca/web/javascript/reference/global_objects/math/log10/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/log10/index.html @@ -1,7 +1,8 @@ --- title: Math.log10() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/log10 +slug: Web/JavaScript/Reference/Global_Objects/Math/log10 translation_of: Web/JavaScript/Reference/Global_Objects/Math/log10 +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/log10 ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/log10e/index.html b/files/ca/web/javascript/reference/global_objects/math/log10e/index.html index 299c8d12ed..865c5d2748 100644 --- a/files/ca/web/javascript/reference/global_objects/math/log10e/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/log10e/index.html @@ -1,7 +1,8 @@ --- title: Math.LOG10E -slug: Web/JavaScript/Referencia/Objectes_globals/Math/LOG10E +slug: Web/JavaScript/Reference/Global_Objects/Math/LOG10E translation_of: Web/JavaScript/Reference/Global_Objects/Math/LOG10E +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/LOG10E ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/log1p/index.html b/files/ca/web/javascript/reference/global_objects/math/log1p/index.html index 1a0eb32cd5..d2d3694a0c 100644 --- a/files/ca/web/javascript/reference/global_objects/math/log1p/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/log1p/index.html @@ -1,7 +1,8 @@ --- title: Math.log1p() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/log1p +slug: Web/JavaScript/Reference/Global_Objects/Math/log1p translation_of: Web/JavaScript/Reference/Global_Objects/Math/log1p +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/log1p ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/log2/index.html b/files/ca/web/javascript/reference/global_objects/math/log2/index.html index 0806bd75ff..9877f863b8 100644 --- a/files/ca/web/javascript/reference/global_objects/math/log2/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/log2/index.html @@ -1,7 +1,8 @@ --- title: Math.log2() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/log2 +slug: Web/JavaScript/Reference/Global_Objects/Math/log2 translation_of: Web/JavaScript/Reference/Global_Objects/Math/log2 +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/log2 ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/log2e/index.html b/files/ca/web/javascript/reference/global_objects/math/log2e/index.html index 2f37ae44c1..a8483c97e4 100644 --- a/files/ca/web/javascript/reference/global_objects/math/log2e/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/log2e/index.html @@ -1,7 +1,8 @@ --- title: Math.LOG2E -slug: Web/JavaScript/Referencia/Objectes_globals/Math/LOG2E +slug: Web/JavaScript/Reference/Global_Objects/Math/LOG2E translation_of: Web/JavaScript/Reference/Global_Objects/Math/LOG2E +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/LOG2E ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/max/index.html b/files/ca/web/javascript/reference/global_objects/math/max/index.html index 791b5dfdfe..1b556be585 100644 --- a/files/ca/web/javascript/reference/global_objects/math/max/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/max/index.html @@ -1,7 +1,8 @@ --- title: Math.max() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/max +slug: Web/JavaScript/Reference/Global_Objects/Math/max translation_of: Web/JavaScript/Reference/Global_Objects/Math/max +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/max ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/min/index.html b/files/ca/web/javascript/reference/global_objects/math/min/index.html index 909e6ff2ee..68cb1ee2fd 100644 --- a/files/ca/web/javascript/reference/global_objects/math/min/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/min/index.html @@ -1,7 +1,8 @@ --- title: Math.min() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/min +slug: Web/JavaScript/Reference/Global_Objects/Math/min translation_of: Web/JavaScript/Reference/Global_Objects/Math/min +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/min ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/pi/index.html b/files/ca/web/javascript/reference/global_objects/math/pi/index.html index b867c953df..11a95acb94 100644 --- a/files/ca/web/javascript/reference/global_objects/math/pi/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/pi/index.html @@ -1,7 +1,8 @@ --- title: Math.PI -slug: Web/JavaScript/Referencia/Objectes_globals/Math/PI +slug: Web/JavaScript/Reference/Global_Objects/Math/PI translation_of: Web/JavaScript/Reference/Global_Objects/Math/PI +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/PI ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/pow/index.html b/files/ca/web/javascript/reference/global_objects/math/pow/index.html index efe89000e9..9f86311dda 100644 --- a/files/ca/web/javascript/reference/global_objects/math/pow/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/pow/index.html @@ -1,7 +1,8 @@ --- title: Math.pow() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/pow +slug: Web/JavaScript/Reference/Global_Objects/Math/pow translation_of: Web/JavaScript/Reference/Global_Objects/Math/pow +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/pow ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/random/index.html b/files/ca/web/javascript/reference/global_objects/math/random/index.html index d70169efd4..5018a5c59d 100644 --- a/files/ca/web/javascript/reference/global_objects/math/random/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/random/index.html @@ -1,7 +1,8 @@ --- title: Math.random() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/random +slug: Web/JavaScript/Reference/Global_Objects/Math/random translation_of: Web/JavaScript/Reference/Global_Objects/Math/random +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/random ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/round/index.html b/files/ca/web/javascript/reference/global_objects/math/round/index.html index 2510799381..fcc2d46bf9 100644 --- a/files/ca/web/javascript/reference/global_objects/math/round/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/round/index.html @@ -1,7 +1,8 @@ --- title: Math.round() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/round +slug: Web/JavaScript/Reference/Global_Objects/Math/round translation_of: Web/JavaScript/Reference/Global_Objects/Math/round +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/round ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/sign/index.html b/files/ca/web/javascript/reference/global_objects/math/sign/index.html index 520ff27dc4..a3a1df277e 100644 --- a/files/ca/web/javascript/reference/global_objects/math/sign/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/sign/index.html @@ -1,7 +1,8 @@ --- title: Math.sign() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/sign +slug: Web/JavaScript/Reference/Global_Objects/Math/sign translation_of: Web/JavaScript/Reference/Global_Objects/Math/sign +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/sign ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/sin/index.html b/files/ca/web/javascript/reference/global_objects/math/sin/index.html index 7f1faf9a98..e880f9ac74 100644 --- a/files/ca/web/javascript/reference/global_objects/math/sin/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/sin/index.html @@ -1,7 +1,8 @@ --- title: Math.sin() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/sin +slug: Web/JavaScript/Reference/Global_Objects/Math/sin translation_of: Web/JavaScript/Reference/Global_Objects/Math/sin +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/sin ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/sinh/index.html b/files/ca/web/javascript/reference/global_objects/math/sinh/index.html index a1cc1f446a..9622b9a00d 100644 --- a/files/ca/web/javascript/reference/global_objects/math/sinh/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/sinh/index.html @@ -1,7 +1,8 @@ --- title: Math.sinh() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/sinh +slug: Web/JavaScript/Reference/Global_Objects/Math/sinh translation_of: Web/JavaScript/Reference/Global_Objects/Math/sinh +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/sinh ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/sqrt/index.html b/files/ca/web/javascript/reference/global_objects/math/sqrt/index.html index b726db8a31..a9cdc465a3 100644 --- a/files/ca/web/javascript/reference/global_objects/math/sqrt/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/sqrt/index.html @@ -1,7 +1,8 @@ --- title: Math.sqrt() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/sqrt +slug: Web/JavaScript/Reference/Global_Objects/Math/sqrt translation_of: Web/JavaScript/Reference/Global_Objects/Math/sqrt +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/sqrt ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/sqrt1_2/index.html b/files/ca/web/javascript/reference/global_objects/math/sqrt1_2/index.html index 3d7d3a1370..a837b7515d 100644 --- a/files/ca/web/javascript/reference/global_objects/math/sqrt1_2/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/sqrt1_2/index.html @@ -1,7 +1,8 @@ --- title: Math.SQRT1_2 -slug: Web/JavaScript/Referencia/Objectes_globals/Math/SQRT1_2 +slug: Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2 translation_of: Web/JavaScript/Reference/Global_Objects/Math/SQRT1_2 +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/SQRT1_2 ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/sqrt2/index.html b/files/ca/web/javascript/reference/global_objects/math/sqrt2/index.html index 3d049f228c..fa49b09c47 100644 --- a/files/ca/web/javascript/reference/global_objects/math/sqrt2/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/sqrt2/index.html @@ -1,7 +1,8 @@ --- title: Math.SQRT2 -slug: Web/JavaScript/Referencia/Objectes_globals/Math/SQRT2 +slug: Web/JavaScript/Reference/Global_Objects/Math/SQRT2 translation_of: Web/JavaScript/Reference/Global_Objects/Math/SQRT2 +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/SQRT2 ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/tan/index.html b/files/ca/web/javascript/reference/global_objects/math/tan/index.html index 590e1f5fc8..a48a08a947 100644 --- a/files/ca/web/javascript/reference/global_objects/math/tan/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/tan/index.html @@ -1,7 +1,8 @@ --- title: Math.tan() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/tan +slug: Web/JavaScript/Reference/Global_Objects/Math/tan translation_of: Web/JavaScript/Reference/Global_Objects/Math/tan +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/tan ---
    {{JSRef("Global_Objects", "Math")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/tanh/index.html b/files/ca/web/javascript/reference/global_objects/math/tanh/index.html index ada19d17e0..63c08ddf1c 100644 --- a/files/ca/web/javascript/reference/global_objects/math/tanh/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/tanh/index.html @@ -1,7 +1,8 @@ --- title: Math.tanh() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/tanh +slug: Web/JavaScript/Reference/Global_Objects/Math/tanh translation_of: Web/JavaScript/Reference/Global_Objects/Math/tanh +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/tanh ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/math/trunc/index.html b/files/ca/web/javascript/reference/global_objects/math/trunc/index.html index 4f76502d69..5fb0229700 100644 --- a/files/ca/web/javascript/reference/global_objects/math/trunc/index.html +++ b/files/ca/web/javascript/reference/global_objects/math/trunc/index.html @@ -1,7 +1,8 @@ --- title: Math.trunc() -slug: Web/JavaScript/Referencia/Objectes_globals/Math/trunc +slug: Web/JavaScript/Reference/Global_Objects/Math/trunc translation_of: Web/JavaScript/Reference/Global_Objects/Math/trunc +original_slug: Web/JavaScript/Referencia/Objectes_globals/Math/trunc ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/nan/index.html b/files/ca/web/javascript/reference/global_objects/nan/index.html index 1d6f4a4dc8..ea6d203f0d 100644 --- a/files/ca/web/javascript/reference/global_objects/nan/index.html +++ b/files/ca/web/javascript/reference/global_objects/nan/index.html @@ -1,7 +1,8 @@ --- title: NaN -slug: Web/JavaScript/Referencia/Objectes_globals/NaN +slug: Web/JavaScript/Reference/Global_Objects/NaN translation_of: Web/JavaScript/Reference/Global_Objects/NaN +original_slug: Web/JavaScript/Referencia/Objectes_globals/NaN ---
    diff --git a/files/ca/web/javascript/reference/global_objects/null/index.html b/files/ca/web/javascript/reference/global_objects/null/index.html index 97506ddeb5..6519c2f522 100644 --- a/files/ca/web/javascript/reference/global_objects/null/index.html +++ b/files/ca/web/javascript/reference/global_objects/null/index.html @@ -1,7 +1,8 @@ --- title: 'null' -slug: Web/JavaScript/Referencia/Objectes_globals/null +slug: Web/JavaScript/Reference/Global_Objects/null translation_of: Web/JavaScript/Reference/Global_Objects/null +original_slug: Web/JavaScript/Referencia/Objectes_globals/null ---
    diff --git a/files/ca/web/javascript/reference/global_objects/number/epsilon/index.html b/files/ca/web/javascript/reference/global_objects/number/epsilon/index.html index 5e3f602703..20036f41ed 100644 --- a/files/ca/web/javascript/reference/global_objects/number/epsilon/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/epsilon/index.html @@ -1,7 +1,8 @@ --- title: Number.EPSILON -slug: Web/JavaScript/Referencia/Objectes_globals/Number/EPSILON +slug: Web/JavaScript/Reference/Global_Objects/Number/EPSILON translation_of: Web/JavaScript/Reference/Global_Objects/Number/EPSILON +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/EPSILON ---
    {{JSRef("Global_Objects", "Number")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/index.html b/files/ca/web/javascript/reference/global_objects/number/index.html index 5f4b7a0bb2..f6ef461a15 100644 --- a/files/ca/web/javascript/reference/global_objects/number/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/index.html @@ -1,7 +1,8 @@ --- title: Number -slug: Web/JavaScript/Referencia/Objectes_globals/Number +slug: Web/JavaScript/Reference/Global_Objects/Number translation_of: Web/JavaScript/Reference/Global_Objects/Number +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number ---
    {{JSRef("Global_Objects", "Number")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/isfinite/index.html b/files/ca/web/javascript/reference/global_objects/number/isfinite/index.html index 21d9493bf8..aed53d28a2 100644 --- a/files/ca/web/javascript/reference/global_objects/number/isfinite/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/isfinite/index.html @@ -1,7 +1,8 @@ --- title: Number.isFinite() -slug: Web/JavaScript/Referencia/Objectes_globals/Number/isFinite +slug: Web/JavaScript/Reference/Global_Objects/Number/isFinite translation_of: Web/JavaScript/Reference/Global_Objects/Number/isFinite +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/isFinite ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/isinteger/index.html b/files/ca/web/javascript/reference/global_objects/number/isinteger/index.html index ee524e91c2..cbc6613bea 100644 --- a/files/ca/web/javascript/reference/global_objects/number/isinteger/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/isinteger/index.html @@ -1,7 +1,8 @@ --- title: Number.isInteger() -slug: Web/JavaScript/Referencia/Objectes_globals/Number/isInteger +slug: Web/JavaScript/Reference/Global_Objects/Number/isInteger translation_of: Web/JavaScript/Reference/Global_Objects/Number/isInteger +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/isInteger ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/isnan/index.html b/files/ca/web/javascript/reference/global_objects/number/isnan/index.html index f6ba247306..9c4776c5f3 100644 --- a/files/ca/web/javascript/reference/global_objects/number/isnan/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/isnan/index.html @@ -1,7 +1,8 @@ --- title: Number.isNaN() -slug: Web/JavaScript/Referencia/Objectes_globals/Number/isNaN +slug: Web/JavaScript/Reference/Global_Objects/Number/isNaN translation_of: Web/JavaScript/Reference/Global_Objects/Number/isNaN +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/isNaN ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/issafeinteger/index.html b/files/ca/web/javascript/reference/global_objects/number/issafeinteger/index.html index 7570e7289d..079d7f990f 100644 --- a/files/ca/web/javascript/reference/global_objects/number/issafeinteger/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/issafeinteger/index.html @@ -1,7 +1,8 @@ --- title: Number.isSafeInteger() -slug: Web/JavaScript/Referencia/Objectes_globals/Number/isSafeInteger +slug: Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger translation_of: Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/isSafeInteger ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/max_safe_integer/index.html b/files/ca/web/javascript/reference/global_objects/number/max_safe_integer/index.html index 02483b41ac..af4eceb183 100644 --- a/files/ca/web/javascript/reference/global_objects/number/max_safe_integer/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/max_safe_integer/index.html @@ -1,7 +1,8 @@ --- title: Number.MAX_SAFE_INTEGER -slug: Web/JavaScript/Referencia/Objectes_globals/Number/MAX_SAFE_INTEGER +slug: Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER translation_of: Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/MAX_SAFE_INTEGER ---
    {{JSRef("Global_Objects", "Number")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/max_value/index.html b/files/ca/web/javascript/reference/global_objects/number/max_value/index.html index 453ad01c23..7b325dde61 100644 --- a/files/ca/web/javascript/reference/global_objects/number/max_value/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/max_value/index.html @@ -1,7 +1,8 @@ --- title: Number.MAX_VALUE -slug: Web/JavaScript/Referencia/Objectes_globals/Number/MAX_VALUE +slug: Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE translation_of: Web/JavaScript/Reference/Global_Objects/Number/MAX_VALUE +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/MAX_VALUE ---
    {{JSRef("Global_Objects", "Number")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/min_safe_integer/index.html b/files/ca/web/javascript/reference/global_objects/number/min_safe_integer/index.html index 861ec666ec..b6f7843eba 100644 --- a/files/ca/web/javascript/reference/global_objects/number/min_safe_integer/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/min_safe_integer/index.html @@ -1,7 +1,8 @@ --- title: Number.MIN_SAFE_INTEGER -slug: Web/JavaScript/Referencia/Objectes_globals/Number/MIN_SAFE_INTEGER +slug: Web/JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER translation_of: Web/JavaScript/Reference/Global_Objects/Number/MIN_SAFE_INTEGER +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/MIN_SAFE_INTEGER ---
    {{JSRef("Global_Objects", "Number")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/min_value/index.html b/files/ca/web/javascript/reference/global_objects/number/min_value/index.html index 42af185360..39c1411150 100644 --- a/files/ca/web/javascript/reference/global_objects/number/min_value/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/min_value/index.html @@ -1,7 +1,8 @@ --- title: Number.MIN_VALUE -slug: Web/JavaScript/Referencia/Objectes_globals/Number/MIN_VALUE +slug: Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE translation_of: Web/JavaScript/Reference/Global_Objects/Number/MIN_VALUE +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/MIN_VALUE ---
    {{JSRef("Global_Objects", "Number")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/nan/index.html b/files/ca/web/javascript/reference/global_objects/number/nan/index.html index 7c6f3f1440..0d94244290 100644 --- a/files/ca/web/javascript/reference/global_objects/number/nan/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/nan/index.html @@ -1,7 +1,8 @@ --- title: Number.NaN -slug: Web/JavaScript/Referencia/Objectes_globals/Number/NaN +slug: Web/JavaScript/Reference/Global_Objects/Number/NaN translation_of: Web/JavaScript/Reference/Global_Objects/Number/NaN +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/NaN ---
    {{JSRef("Global_Objects", "Number")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/negative_infinity/index.html b/files/ca/web/javascript/reference/global_objects/number/negative_infinity/index.html index 3fb4c1d150..6bec8b6825 100644 --- a/files/ca/web/javascript/reference/global_objects/number/negative_infinity/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/negative_infinity/index.html @@ -1,7 +1,8 @@ --- title: Number.NEGATIVE_INFINITY -slug: Web/JavaScript/Referencia/Objectes_globals/Number/NEGATIVE_INFINITY +slug: Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY translation_of: Web/JavaScript/Reference/Global_Objects/Number/NEGATIVE_INFINITY +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/NEGATIVE_INFINITY ---
    {{JSRef("Global_Objects", "Number")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/parsefloat/index.html b/files/ca/web/javascript/reference/global_objects/number/parsefloat/index.html index cd3494b7ac..f260845735 100644 --- a/files/ca/web/javascript/reference/global_objects/number/parsefloat/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/parsefloat/index.html @@ -1,7 +1,8 @@ --- title: Number.parseFloat() -slug: Web/JavaScript/Referencia/Objectes_globals/Number/parseFloat +slug: Web/JavaScript/Reference/Global_Objects/Number/parseFloat translation_of: Web/JavaScript/Reference/Global_Objects/Number/parseFloat +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/parseFloat ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/parseint/index.html b/files/ca/web/javascript/reference/global_objects/number/parseint/index.html index 2ef9597d11..3d64535f5b 100644 --- a/files/ca/web/javascript/reference/global_objects/number/parseint/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/parseint/index.html @@ -1,7 +1,8 @@ --- title: Number.parseInt() -slug: Web/JavaScript/Referencia/Objectes_globals/Number/parseInt +slug: Web/JavaScript/Reference/Global_Objects/Number/parseInt translation_of: Web/JavaScript/Reference/Global_Objects/Number/parseInt +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/parseInt ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/positive_infinity/index.html b/files/ca/web/javascript/reference/global_objects/number/positive_infinity/index.html index 234a779fd1..201eb9a614 100644 --- a/files/ca/web/javascript/reference/global_objects/number/positive_infinity/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/positive_infinity/index.html @@ -1,7 +1,8 @@ --- title: Number.POSITIVE_INFINITY -slug: Web/JavaScript/Referencia/Objectes_globals/Number/POSITIVE_INFINITY +slug: Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY translation_of: Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/POSITIVE_INFINITY ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/toexponential/index.html b/files/ca/web/javascript/reference/global_objects/number/toexponential/index.html index 69ca3478ac..16adb8fa12 100644 --- a/files/ca/web/javascript/reference/global_objects/number/toexponential/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/toexponential/index.html @@ -1,7 +1,8 @@ --- title: Number.prototype.toExponential() -slug: Web/JavaScript/Referencia/Objectes_globals/Number/toExponential +slug: Web/JavaScript/Reference/Global_Objects/Number/toExponential translation_of: Web/JavaScript/Reference/Global_Objects/Number/toExponential +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/toExponential ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/tofixed/index.html b/files/ca/web/javascript/reference/global_objects/number/tofixed/index.html index 8df53aafe3..97e9279ef3 100644 --- a/files/ca/web/javascript/reference/global_objects/number/tofixed/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/tofixed/index.html @@ -1,7 +1,8 @@ --- title: Number.prototype.toFixed() -slug: Web/JavaScript/Referencia/Objectes_globals/Number/toFixed +slug: Web/JavaScript/Reference/Global_Objects/Number/toFixed translation_of: Web/JavaScript/Reference/Global_Objects/Number/toFixed +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/toFixed ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/toprecision/index.html b/files/ca/web/javascript/reference/global_objects/number/toprecision/index.html index 0af5875e7f..79166a8749 100644 --- a/files/ca/web/javascript/reference/global_objects/number/toprecision/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/toprecision/index.html @@ -1,7 +1,8 @@ --- title: Number.prototype.toPrecision() -slug: Web/JavaScript/Referencia/Objectes_globals/Number/toPrecision +slug: Web/JavaScript/Reference/Global_Objects/Number/toPrecision translation_of: Web/JavaScript/Reference/Global_Objects/Number/toPrecision +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/toPrecision ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/number/tostring/index.html b/files/ca/web/javascript/reference/global_objects/number/tostring/index.html index 7381fc97ac..c048302d99 100644 --- a/files/ca/web/javascript/reference/global_objects/number/tostring/index.html +++ b/files/ca/web/javascript/reference/global_objects/number/tostring/index.html @@ -1,7 +1,8 @@ --- title: Number.prototype.toString() -slug: Web/JavaScript/Referencia/Objectes_globals/Number/toString +slug: Web/JavaScript/Reference/Global_Objects/Number/toString translation_of: Web/JavaScript/Reference/Global_Objects/Number/toString +original_slug: Web/JavaScript/Referencia/Objectes_globals/Number/toString ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/parsefloat/index.html b/files/ca/web/javascript/reference/global_objects/parsefloat/index.html index 570fa6b63f..f11c81107e 100644 --- a/files/ca/web/javascript/reference/global_objects/parsefloat/index.html +++ b/files/ca/web/javascript/reference/global_objects/parsefloat/index.html @@ -1,7 +1,8 @@ --- title: parseFloat() -slug: Web/JavaScript/Referencia/Objectes_globals/parseFloat +slug: Web/JavaScript/Reference/Global_Objects/parseFloat translation_of: Web/JavaScript/Reference/Global_Objects/parseFloat +original_slug: Web/JavaScript/Referencia/Objectes_globals/parseFloat ---
    diff --git a/files/ca/web/javascript/reference/global_objects/set/add/index.html b/files/ca/web/javascript/reference/global_objects/set/add/index.html index b93eaa3efb..0c619eb2ff 100644 --- a/files/ca/web/javascript/reference/global_objects/set/add/index.html +++ b/files/ca/web/javascript/reference/global_objects/set/add/index.html @@ -1,7 +1,8 @@ --- title: Set.prototype.add() -slug: Web/JavaScript/Referencia/Objectes_globals/Set/add +slug: Web/JavaScript/Reference/Global_Objects/Set/add translation_of: Web/JavaScript/Reference/Global_Objects/Set/add +original_slug: Web/JavaScript/Referencia/Objectes_globals/Set/add ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/set/clear/index.html b/files/ca/web/javascript/reference/global_objects/set/clear/index.html index 6ef179daaa..3853f18f7e 100644 --- a/files/ca/web/javascript/reference/global_objects/set/clear/index.html +++ b/files/ca/web/javascript/reference/global_objects/set/clear/index.html @@ -1,7 +1,8 @@ --- title: Set.prototype.clear() -slug: Web/JavaScript/Referencia/Objectes_globals/Set/clear +slug: Web/JavaScript/Reference/Global_Objects/Set/clear translation_of: Web/JavaScript/Reference/Global_Objects/Set/clear +original_slug: Web/JavaScript/Referencia/Objectes_globals/Set/clear ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/set/delete/index.html b/files/ca/web/javascript/reference/global_objects/set/delete/index.html index ea66c1a723..d2e68be67b 100644 --- a/files/ca/web/javascript/reference/global_objects/set/delete/index.html +++ b/files/ca/web/javascript/reference/global_objects/set/delete/index.html @@ -1,7 +1,8 @@ --- title: Set.prototype.delete() -slug: Web/JavaScript/Referencia/Objectes_globals/Set/delete +slug: Web/JavaScript/Reference/Global_Objects/Set/delete translation_of: Web/JavaScript/Reference/Global_Objects/Set/delete +original_slug: Web/JavaScript/Referencia/Objectes_globals/Set/delete ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/set/entries/index.html b/files/ca/web/javascript/reference/global_objects/set/entries/index.html index 848e53ba8d..084e9597a5 100644 --- a/files/ca/web/javascript/reference/global_objects/set/entries/index.html +++ b/files/ca/web/javascript/reference/global_objects/set/entries/index.html @@ -1,7 +1,8 @@ --- title: Set.prototype.entries() -slug: Web/JavaScript/Referencia/Objectes_globals/Set/entries +slug: Web/JavaScript/Reference/Global_Objects/Set/entries translation_of: Web/JavaScript/Reference/Global_Objects/Set/entries +original_slug: Web/JavaScript/Referencia/Objectes_globals/Set/entries ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/set/has/index.html b/files/ca/web/javascript/reference/global_objects/set/has/index.html index ca9027b8a4..ce1de9ee08 100644 --- a/files/ca/web/javascript/reference/global_objects/set/has/index.html +++ b/files/ca/web/javascript/reference/global_objects/set/has/index.html @@ -1,7 +1,8 @@ --- title: Set.prototype.has() -slug: Web/JavaScript/Referencia/Objectes_globals/Set/has +slug: Web/JavaScript/Reference/Global_Objects/Set/has translation_of: Web/JavaScript/Reference/Global_Objects/Set/has +original_slug: Web/JavaScript/Referencia/Objectes_globals/Set/has ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/set/index.html b/files/ca/web/javascript/reference/global_objects/set/index.html index 993d296324..e7b9067326 100644 --- a/files/ca/web/javascript/reference/global_objects/set/index.html +++ b/files/ca/web/javascript/reference/global_objects/set/index.html @@ -1,7 +1,8 @@ --- title: Set -slug: Web/JavaScript/Referencia/Objectes_globals/Set +slug: Web/JavaScript/Reference/Global_Objects/Set translation_of: Web/JavaScript/Reference/Global_Objects/Set +original_slug: Web/JavaScript/Referencia/Objectes_globals/Set ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/set/values/index.html b/files/ca/web/javascript/reference/global_objects/set/values/index.html index 307fa78113..9a51edb912 100644 --- a/files/ca/web/javascript/reference/global_objects/set/values/index.html +++ b/files/ca/web/javascript/reference/global_objects/set/values/index.html @@ -1,7 +1,8 @@ --- title: Set.prototype.values() -slug: Web/JavaScript/Referencia/Objectes_globals/Set/values +slug: Web/JavaScript/Reference/Global_Objects/Set/values translation_of: Web/JavaScript/Reference/Global_Objects/Set/values +original_slug: Web/JavaScript/Referencia/Objectes_globals/Set/values ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/anchor/index.html b/files/ca/web/javascript/reference/global_objects/string/anchor/index.html index 15bd4db97b..501d7ea2eb 100644 --- a/files/ca/web/javascript/reference/global_objects/string/anchor/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/anchor/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.anchor() -slug: Web/JavaScript/Referencia/Objectes_globals/String/anchor +slug: Web/JavaScript/Reference/Global_Objects/String/anchor translation_of: Web/JavaScript/Reference/Global_Objects/String/anchor +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/anchor ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/big/index.html b/files/ca/web/javascript/reference/global_objects/string/big/index.html index a3b8815f10..2f9aae3b17 100644 --- a/files/ca/web/javascript/reference/global_objects/string/big/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/big/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.big() -slug: Web/JavaScript/Referencia/Objectes_globals/String/big +slug: Web/JavaScript/Reference/Global_Objects/String/big translation_of: Web/JavaScript/Reference/Global_Objects/String/big +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/big ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/blink/index.html b/files/ca/web/javascript/reference/global_objects/string/blink/index.html index 2378325897..98d657b77b 100644 --- a/files/ca/web/javascript/reference/global_objects/string/blink/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/blink/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.blink() -slug: Web/JavaScript/Referencia/Objectes_globals/String/blink +slug: Web/JavaScript/Reference/Global_Objects/String/blink translation_of: Web/JavaScript/Reference/Global_Objects/String/blink +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/blink ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/bold/index.html b/files/ca/web/javascript/reference/global_objects/string/bold/index.html index 502810bb45..403db1ca36 100644 --- a/files/ca/web/javascript/reference/global_objects/string/bold/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/bold/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.bold() -slug: Web/JavaScript/Referencia/Objectes_globals/String/bold +slug: Web/JavaScript/Reference/Global_Objects/String/bold translation_of: Web/JavaScript/Reference/Global_Objects/String/bold +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/bold ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/charat/index.html b/files/ca/web/javascript/reference/global_objects/string/charat/index.html index 55a84ab7d0..60c6f7a9c0 100644 --- a/files/ca/web/javascript/reference/global_objects/string/charat/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/charat/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.charAt() -slug: Web/JavaScript/Referencia/Objectes_globals/String/charAt +slug: Web/JavaScript/Reference/Global_Objects/String/charAt translation_of: Web/JavaScript/Reference/Global_Objects/String/charAt +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/charAt ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/concat/index.html b/files/ca/web/javascript/reference/global_objects/string/concat/index.html index 87cdda3c5e..b9bedcb4ce 100644 --- a/files/ca/web/javascript/reference/global_objects/string/concat/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/concat/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.concat() -slug: Web/JavaScript/Referencia/Objectes_globals/String/concat +slug: Web/JavaScript/Reference/Global_Objects/String/concat translation_of: Web/JavaScript/Reference/Global_Objects/String/concat +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/concat ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/endswith/index.html b/files/ca/web/javascript/reference/global_objects/string/endswith/index.html index 83a1201549..2706be9e88 100644 --- a/files/ca/web/javascript/reference/global_objects/string/endswith/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/endswith/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.endsWith() -slug: Web/JavaScript/Referencia/Objectes_globals/String/endsWith +slug: Web/JavaScript/Reference/Global_Objects/String/endsWith translation_of: Web/JavaScript/Reference/Global_Objects/String/endsWith +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/endsWith ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/fixed/index.html b/files/ca/web/javascript/reference/global_objects/string/fixed/index.html index 069ab4243f..8e44a443d6 100644 --- a/files/ca/web/javascript/reference/global_objects/string/fixed/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/fixed/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.fixed() -slug: Web/JavaScript/Referencia/Objectes_globals/String/fixed +slug: Web/JavaScript/Reference/Global_Objects/String/fixed translation_of: Web/JavaScript/Reference/Global_Objects/String/fixed +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/fixed ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/fontcolor/index.html b/files/ca/web/javascript/reference/global_objects/string/fontcolor/index.html index be52cd576b..1a88ad0070 100644 --- a/files/ca/web/javascript/reference/global_objects/string/fontcolor/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/fontcolor/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.fontcolor() -slug: Web/JavaScript/Referencia/Objectes_globals/String/fontcolor +slug: Web/JavaScript/Reference/Global_Objects/String/fontcolor translation_of: Web/JavaScript/Reference/Global_Objects/String/fontcolor +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/fontcolor ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/fontsize/index.html b/files/ca/web/javascript/reference/global_objects/string/fontsize/index.html index 9f30d124aa..a55b8eaa5b 100644 --- a/files/ca/web/javascript/reference/global_objects/string/fontsize/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/fontsize/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.fontsize() -slug: Web/JavaScript/Referencia/Objectes_globals/String/fontsize +slug: Web/JavaScript/Reference/Global_Objects/String/fontsize translation_of: Web/JavaScript/Reference/Global_Objects/String/fontsize +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/fontsize ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/fromcharcode/index.html b/files/ca/web/javascript/reference/global_objects/string/fromcharcode/index.html index f4e2308bf9..e168171699 100644 --- a/files/ca/web/javascript/reference/global_objects/string/fromcharcode/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/fromcharcode/index.html @@ -1,7 +1,8 @@ --- title: String.fromCharCode() -slug: Web/JavaScript/Referencia/Objectes_globals/String/fromCharCode +slug: Web/JavaScript/Reference/Global_Objects/String/fromCharCode translation_of: Web/JavaScript/Reference/Global_Objects/String/fromCharCode +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/fromCharCode ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/index.html b/files/ca/web/javascript/reference/global_objects/string/index.html index 136820a54d..b3b91b48d7 100644 --- a/files/ca/web/javascript/reference/global_objects/string/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/index.html @@ -1,7 +1,8 @@ --- title: String -slug: Web/JavaScript/Referencia/Objectes_globals/String +slug: Web/JavaScript/Reference/Global_Objects/String translation_of: Web/JavaScript/Reference/Global_Objects/String +original_slug: Web/JavaScript/Referencia/Objectes_globals/String ---
    {{JSRef("Global_Objects", "String")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/indexof/index.html b/files/ca/web/javascript/reference/global_objects/string/indexof/index.html index 9b08b04ded..296dbdcb50 100644 --- a/files/ca/web/javascript/reference/global_objects/string/indexof/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/indexof/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.indexOf() -slug: Web/JavaScript/Referencia/Objectes_globals/String/indexOf +slug: Web/JavaScript/Reference/Global_Objects/String/indexOf translation_of: Web/JavaScript/Reference/Global_Objects/String/indexOf +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/indexOf ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/italics/index.html b/files/ca/web/javascript/reference/global_objects/string/italics/index.html index f38a8f9579..f263eb5c3f 100644 --- a/files/ca/web/javascript/reference/global_objects/string/italics/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/italics/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.italics() -slug: Web/JavaScript/Referencia/Objectes_globals/String/italics +slug: Web/JavaScript/Reference/Global_Objects/String/italics translation_of: Web/JavaScript/Reference/Global_Objects/String/italics +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/italics ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/length/index.html b/files/ca/web/javascript/reference/global_objects/string/length/index.html index 63a3114d2d..2bc570d90f 100644 --- a/files/ca/web/javascript/reference/global_objects/string/length/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/length/index.html @@ -1,7 +1,8 @@ --- title: String.length -slug: Web/JavaScript/Referencia/Objectes_globals/String/length +slug: Web/JavaScript/Reference/Global_Objects/String/length translation_of: Web/JavaScript/Reference/Global_Objects/String/length +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/length ---
    {{JSRef("Global_Objects", "String")}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/link/index.html b/files/ca/web/javascript/reference/global_objects/string/link/index.html index efe1385ddc..1c93d90296 100644 --- a/files/ca/web/javascript/reference/global_objects/string/link/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/link/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.link() -slug: Web/JavaScript/Referencia/Objectes_globals/String/link +slug: Web/JavaScript/Reference/Global_Objects/String/link translation_of: Web/JavaScript/Reference/Global_Objects/String/link +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/link ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/normalize/index.html b/files/ca/web/javascript/reference/global_objects/string/normalize/index.html index 7a6bcef500..052e740dfe 100644 --- a/files/ca/web/javascript/reference/global_objects/string/normalize/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/normalize/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.normalize() -slug: Web/JavaScript/Referencia/Objectes_globals/String/normalize +slug: Web/JavaScript/Reference/Global_Objects/String/normalize translation_of: Web/JavaScript/Reference/Global_Objects/String/normalize +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/normalize ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/small/index.html b/files/ca/web/javascript/reference/global_objects/string/small/index.html index 761797bdda..b7b43ff492 100644 --- a/files/ca/web/javascript/reference/global_objects/string/small/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/small/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.small() -slug: Web/JavaScript/Referencia/Objectes_globals/String/small +slug: Web/JavaScript/Reference/Global_Objects/String/small translation_of: Web/JavaScript/Reference/Global_Objects/String/small +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/small ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/startswith/index.html b/files/ca/web/javascript/reference/global_objects/string/startswith/index.html index ca25398d51..e96aabc68a 100644 --- a/files/ca/web/javascript/reference/global_objects/string/startswith/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/startswith/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.startsWith() -slug: Web/JavaScript/Referencia/Objectes_globals/String/startsWith +slug: Web/JavaScript/Reference/Global_Objects/String/startsWith translation_of: Web/JavaScript/Reference/Global_Objects/String/startsWith +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/startsWith ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/sub/index.html b/files/ca/web/javascript/reference/global_objects/string/sub/index.html index 0b512d038e..31655d16c9 100644 --- a/files/ca/web/javascript/reference/global_objects/string/sub/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/sub/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.sub() -slug: Web/JavaScript/Referencia/Objectes_globals/String/sub +slug: Web/JavaScript/Reference/Global_Objects/String/sub translation_of: Web/JavaScript/Reference/Global_Objects/String/sub +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/sub ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/substr/index.html b/files/ca/web/javascript/reference/global_objects/string/substr/index.html index 5fdb1f03b4..d503114bcf 100644 --- a/files/ca/web/javascript/reference/global_objects/string/substr/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/substr/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.substr() -slug: Web/JavaScript/Referencia/Objectes_globals/String/substr +slug: Web/JavaScript/Reference/Global_Objects/String/substr translation_of: Web/JavaScript/Reference/Global_Objects/String/substr +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/substr ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/sup/index.html b/files/ca/web/javascript/reference/global_objects/string/sup/index.html index 24b46c88ce..c04b9d7ca3 100644 --- a/files/ca/web/javascript/reference/global_objects/string/sup/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/sup/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.sup() -slug: Web/JavaScript/Referencia/Objectes_globals/String/sup +slug: Web/JavaScript/Reference/Global_Objects/String/sup translation_of: Web/JavaScript/Reference/Global_Objects/String/sup +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/sup ---
    {{JSRef}} {{deprecated_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/tolocalelowercase/index.html b/files/ca/web/javascript/reference/global_objects/string/tolocalelowercase/index.html index c138197bc1..05d5850688 100644 --- a/files/ca/web/javascript/reference/global_objects/string/tolocalelowercase/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/tolocalelowercase/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.toLocaleLowerCase() -slug: Web/JavaScript/Referencia/Objectes_globals/String/toLocaleLowerCase +slug: Web/JavaScript/Reference/Global_Objects/String/toLocaleLowerCase translation_of: Web/JavaScript/Reference/Global_Objects/String/toLocaleLowerCase +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/toLocaleLowerCase ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/tolocaleuppercase/index.html b/files/ca/web/javascript/reference/global_objects/string/tolocaleuppercase/index.html index 8f7b2aa716..5e336e40e7 100644 --- a/files/ca/web/javascript/reference/global_objects/string/tolocaleuppercase/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/tolocaleuppercase/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.toLocaleUpperCase() -slug: Web/JavaScript/Referencia/Objectes_globals/String/toLocaleUpperCase +slug: Web/JavaScript/Reference/Global_Objects/String/toLocaleUpperCase translation_of: Web/JavaScript/Reference/Global_Objects/String/toLocaleUpperCase +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/toLocaleUpperCase ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/tolowercase/index.html b/files/ca/web/javascript/reference/global_objects/string/tolowercase/index.html index 7147d0ea0d..fe13276895 100644 --- a/files/ca/web/javascript/reference/global_objects/string/tolowercase/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/tolowercase/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.toLowerCase() -slug: Web/JavaScript/Referencia/Objectes_globals/String/toLowerCase +slug: Web/JavaScript/Reference/Global_Objects/String/toLowerCase translation_of: Web/JavaScript/Reference/Global_Objects/String/toLowerCase +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/toLowerCase ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/tostring/index.html b/files/ca/web/javascript/reference/global_objects/string/tostring/index.html index 11f2555a2f..ab1881653b 100644 --- a/files/ca/web/javascript/reference/global_objects/string/tostring/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/tostring/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.toString() -slug: Web/JavaScript/Referencia/Objectes_globals/String/toString +slug: Web/JavaScript/Reference/Global_Objects/String/toString translation_of: Web/JavaScript/Reference/Global_Objects/String/toString +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/toString ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/touppercase/index.html b/files/ca/web/javascript/reference/global_objects/string/touppercase/index.html index 2a3b4fe56a..986ca1f1c3 100644 --- a/files/ca/web/javascript/reference/global_objects/string/touppercase/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/touppercase/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.toUpperCase() -slug: Web/JavaScript/Referencia/Objectes_globals/String/toUpperCase +slug: Web/JavaScript/Reference/Global_Objects/String/toUpperCase translation_of: Web/JavaScript/Reference/Global_Objects/String/toUpperCase +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/toUpperCase ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/trim/index.html b/files/ca/web/javascript/reference/global_objects/string/trim/index.html index 2dd955ea62..23bf4cdcf4 100644 --- a/files/ca/web/javascript/reference/global_objects/string/trim/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/trim/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.trim() -slug: Web/JavaScript/Referencia/Objectes_globals/String/Trim +slug: Web/JavaScript/Reference/Global_Objects/String/Trim translation_of: Web/JavaScript/Reference/Global_Objects/String/Trim +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/Trim ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/trimend/index.html b/files/ca/web/javascript/reference/global_objects/string/trimend/index.html index 41ab89e3ca..ee22825fc4 100644 --- a/files/ca/web/javascript/reference/global_objects/string/trimend/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/trimend/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.trimRight() -slug: Web/JavaScript/Referencia/Objectes_globals/String/TrimRight +slug: Web/JavaScript/Reference/Global_Objects/String/trimEnd translation_of: Web/JavaScript/Reference/Global_Objects/String/trimEnd +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/TrimRight ---
    {{JSRef}} {{non-standard_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/string/trimstart/index.html b/files/ca/web/javascript/reference/global_objects/string/trimstart/index.html index f16a5b89fa..c465678d96 100644 --- a/files/ca/web/javascript/reference/global_objects/string/trimstart/index.html +++ b/files/ca/web/javascript/reference/global_objects/string/trimstart/index.html @@ -1,7 +1,8 @@ --- title: String.prototype.trimLeft() -slug: Web/JavaScript/Referencia/Objectes_globals/String/TrimLeft +slug: Web/JavaScript/Reference/Global_Objects/String/trimStart translation_of: Web/JavaScript/Reference/Global_Objects/String/trimStart +original_slug: Web/JavaScript/Referencia/Objectes_globals/String/TrimLeft ---
    {{JSRef}} {{non-standard_header}}
    diff --git a/files/ca/web/javascript/reference/global_objects/syntaxerror/index.html b/files/ca/web/javascript/reference/global_objects/syntaxerror/index.html index 2ad16e006f..53db99e0ef 100644 --- a/files/ca/web/javascript/reference/global_objects/syntaxerror/index.html +++ b/files/ca/web/javascript/reference/global_objects/syntaxerror/index.html @@ -1,7 +1,8 @@ --- title: SyntaxError -slug: Web/JavaScript/Referencia/Objectes_globals/SyntaxError +slug: Web/JavaScript/Reference/Global_Objects/SyntaxError translation_of: Web/JavaScript/Reference/Global_Objects/SyntaxError +original_slug: Web/JavaScript/Referencia/Objectes_globals/SyntaxError ---
    {{JSRef}}
    diff --git a/files/ca/web/javascript/reference/global_objects/undefined/index.html b/files/ca/web/javascript/reference/global_objects/undefined/index.html index 3dd30fbefe..e00aa3008d 100644 --- a/files/ca/web/javascript/reference/global_objects/undefined/index.html +++ b/files/ca/web/javascript/reference/global_objects/undefined/index.html @@ -1,7 +1,8 @@ --- title: undefined -slug: Web/JavaScript/Referencia/Objectes_globals/undefined +slug: Web/JavaScript/Reference/Global_Objects/undefined translation_of: Web/JavaScript/Reference/Global_Objects/undefined +original_slug: Web/JavaScript/Referencia/Objectes_globals/undefined ---
    diff --git a/files/ca/web/javascript/reference/index.html b/files/ca/web/javascript/reference/index.html index f524504ab2..5330d2dd8f 100644 --- a/files/ca/web/javascript/reference/index.html +++ b/files/ca/web/javascript/reference/index.html @@ -1,7 +1,8 @@ --- title: Glossari de JavaScript -slug: Web/JavaScript/Referencia +slug: Web/JavaScript/Reference translation_of: Web/JavaScript/Reference +original_slug: Web/JavaScript/Referencia ---
    {{JsSidebar}}
    diff --git a/files/ca/web/javascript/reference/operators/comma_operator/index.html b/files/ca/web/javascript/reference/operators/comma_operator/index.html index f6a62d2bc8..4819aa9186 100644 --- a/files/ca/web/javascript/reference/operators/comma_operator/index.html +++ b/files/ca/web/javascript/reference/operators/comma_operator/index.html @@ -1,7 +1,8 @@ --- title: Operador Coma -slug: Web/JavaScript/Referencia/Operadors/Operador_Coma +slug: Web/JavaScript/Reference/Operators/Comma_Operator translation_of: Web/JavaScript/Reference/Operators/Comma_Operator +original_slug: Web/JavaScript/Referencia/Operadors/Operador_Coma ---
    {{jsSidebar("Operators")}}
    diff --git a/files/ca/web/javascript/reference/operators/conditional_operator/index.html b/files/ca/web/javascript/reference/operators/conditional_operator/index.html index 15265c62b3..0cfbd791a3 100644 --- a/files/ca/web/javascript/reference/operators/conditional_operator/index.html +++ b/files/ca/web/javascript/reference/operators/conditional_operator/index.html @@ -1,7 +1,8 @@ --- title: Operador Condicional (ternari) -slug: Web/JavaScript/Referencia/Operadors/Conditional_Operator +slug: Web/JavaScript/Reference/Operators/Conditional_Operator translation_of: Web/JavaScript/Reference/Operators/Conditional_Operator +original_slug: Web/JavaScript/Referencia/Operadors/Conditional_Operator ---
    {{jsSidebar("Operators")}}
    diff --git a/files/ca/web/javascript/reference/operators/function/index.html b/files/ca/web/javascript/reference/operators/function/index.html index 0908f591b6..ad7b71f5de 100644 --- a/files/ca/web/javascript/reference/operators/function/index.html +++ b/files/ca/web/javascript/reference/operators/function/index.html @@ -1,7 +1,8 @@ --- title: function expression -slug: Web/JavaScript/Referencia/Operadors/function +slug: Web/JavaScript/Reference/Operators/function translation_of: Web/JavaScript/Reference/Operators/function +original_slug: Web/JavaScript/Referencia/Operadors/function ---
    {{jsSidebar("Operators")}}
    diff --git a/files/ca/web/javascript/reference/operators/grouping/index.html b/files/ca/web/javascript/reference/operators/grouping/index.html index 45e8566806..7c2441239b 100644 --- a/files/ca/web/javascript/reference/operators/grouping/index.html +++ b/files/ca/web/javascript/reference/operators/grouping/index.html @@ -1,7 +1,8 @@ --- title: Operador d'agrupament -slug: Web/JavaScript/Referencia/Operadors/Grouping +slug: Web/JavaScript/Reference/Operators/Grouping translation_of: Web/JavaScript/Reference/Operators/Grouping +original_slug: Web/JavaScript/Referencia/Operadors/Grouping ---
    {{jsSidebar("Operators")}}
    diff --git a/files/ca/web/javascript/reference/operators/index.html b/files/ca/web/javascript/reference/operators/index.html index 4a70edc4fb..620607e228 100644 --- a/files/ca/web/javascript/reference/operators/index.html +++ b/files/ca/web/javascript/reference/operators/index.html @@ -1,12 +1,13 @@ --- title: Expressions and operators -slug: Web/JavaScript/Referencia/Operadors +slug: Web/JavaScript/Reference/Operators tags: - JavaScript - NeedsTranslation - Operators - TopicStub translation_of: Web/JavaScript/Reference/Operators +original_slug: Web/JavaScript/Referencia/Operadors ---
    {{jsSidebar("Operators")}}
    diff --git a/files/ca/web/javascript/reference/operators/super/index.html b/files/ca/web/javascript/reference/operators/super/index.html index c19e58cba1..140c07505a 100644 --- a/files/ca/web/javascript/reference/operators/super/index.html +++ b/files/ca/web/javascript/reference/operators/super/index.html @@ -1,7 +1,8 @@ --- title: super -slug: Web/JavaScript/Referencia/Operadors/super +slug: Web/JavaScript/Reference/Operators/super translation_of: Web/JavaScript/Reference/Operators/super +original_slug: Web/JavaScript/Referencia/Operadors/super ---
    {{jsSidebar("Operators")}}
    diff --git a/files/ca/web/javascript/reference/operators/typeof/index.html b/files/ca/web/javascript/reference/operators/typeof/index.html index a7407e79ce..dbdfa6f86a 100644 --- a/files/ca/web/javascript/reference/operators/typeof/index.html +++ b/files/ca/web/javascript/reference/operators/typeof/index.html @@ -1,7 +1,8 @@ --- title: typeof -slug: Web/JavaScript/Referencia/Operadors/typeof +slug: Web/JavaScript/Reference/Operators/typeof translation_of: Web/JavaScript/Reference/Operators/typeof +original_slug: Web/JavaScript/Referencia/Operadors/typeof ---
    {{jsSidebar("Operators")}}
    diff --git a/files/ca/web/javascript/reference/operators/void/index.html b/files/ca/web/javascript/reference/operators/void/index.html index ddf98ebfd9..60b2846665 100644 --- a/files/ca/web/javascript/reference/operators/void/index.html +++ b/files/ca/web/javascript/reference/operators/void/index.html @@ -1,7 +1,8 @@ --- title: L'operador void -slug: Web/JavaScript/Referencia/Operadors/void +slug: Web/JavaScript/Reference/Operators/void translation_of: Web/JavaScript/Reference/Operators/void +original_slug: Web/JavaScript/Referencia/Operadors/void ---
    {{jsSidebar("Operators")}}
    diff --git a/files/ca/web/javascript/reference/operators/yield/index.html b/files/ca/web/javascript/reference/operators/yield/index.html index d01f641767..cdbe9b1c37 100644 --- a/files/ca/web/javascript/reference/operators/yield/index.html +++ b/files/ca/web/javascript/reference/operators/yield/index.html @@ -1,7 +1,8 @@ --- title: yield -slug: Web/JavaScript/Referencia/Operadors/yield +slug: Web/JavaScript/Reference/Operators/yield translation_of: Web/JavaScript/Reference/Operators/yield +original_slug: Web/JavaScript/Referencia/Operadors/yield ---
    {{jsSidebar("Operators")}}
    diff --git a/files/ca/web/javascript/reference/statements/block/index.html b/files/ca/web/javascript/reference/statements/block/index.html index cfa5d7fd20..7e2f0602ec 100644 --- a/files/ca/web/javascript/reference/statements/block/index.html +++ b/files/ca/web/javascript/reference/statements/block/index.html @@ -1,7 +1,8 @@ --- title: block -slug: Web/JavaScript/Referencia/Sentencies/block +slug: Web/JavaScript/Reference/Statements/block translation_of: Web/JavaScript/Reference/Statements/block +original_slug: Web/JavaScript/Referencia/Sentencies/block ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/break/index.html b/files/ca/web/javascript/reference/statements/break/index.html index d71eff620d..a4bb253163 100644 --- a/files/ca/web/javascript/reference/statements/break/index.html +++ b/files/ca/web/javascript/reference/statements/break/index.html @@ -1,7 +1,8 @@ --- title: break -slug: Web/JavaScript/Referencia/Sentencies/break +slug: Web/JavaScript/Reference/Statements/break translation_of: Web/JavaScript/Reference/Statements/break +original_slug: Web/JavaScript/Referencia/Sentencies/break ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/continue/index.html b/files/ca/web/javascript/reference/statements/continue/index.html index a6928d15b7..fc2d298ac0 100644 --- a/files/ca/web/javascript/reference/statements/continue/index.html +++ b/files/ca/web/javascript/reference/statements/continue/index.html @@ -1,7 +1,8 @@ --- title: continue -slug: Web/JavaScript/Referencia/Sentencies/continue +slug: Web/JavaScript/Reference/Statements/continue translation_of: Web/JavaScript/Reference/Statements/continue +original_slug: Web/JavaScript/Referencia/Sentencies/continue ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/debugger/index.html b/files/ca/web/javascript/reference/statements/debugger/index.html index 54d8d02e3d..7ccf2e9ae2 100644 --- a/files/ca/web/javascript/reference/statements/debugger/index.html +++ b/files/ca/web/javascript/reference/statements/debugger/index.html @@ -1,7 +1,8 @@ --- title: debugger -slug: Web/JavaScript/Referencia/Sentencies/debugger +slug: Web/JavaScript/Reference/Statements/debugger translation_of: Web/JavaScript/Reference/Statements/debugger +original_slug: Web/JavaScript/Referencia/Sentencies/debugger ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/do...while/index.html b/files/ca/web/javascript/reference/statements/do...while/index.html index 88f221f83d..e5a3a33578 100644 --- a/files/ca/web/javascript/reference/statements/do...while/index.html +++ b/files/ca/web/javascript/reference/statements/do...while/index.html @@ -1,7 +1,8 @@ --- title: do...while -slug: Web/JavaScript/Referencia/Sentencies/do...while +slug: Web/JavaScript/Reference/Statements/do...while translation_of: Web/JavaScript/Reference/Statements/do...while +original_slug: Web/JavaScript/Referencia/Sentencies/do...while ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/empty/index.html b/files/ca/web/javascript/reference/statements/empty/index.html index 6800d476f8..3d3e916fe1 100644 --- a/files/ca/web/javascript/reference/statements/empty/index.html +++ b/files/ca/web/javascript/reference/statements/empty/index.html @@ -1,7 +1,8 @@ --- title: Buida -slug: Web/JavaScript/Referencia/Sentencies/Buida +slug: Web/JavaScript/Reference/Statements/Empty translation_of: Web/JavaScript/Reference/Statements/Empty +original_slug: Web/JavaScript/Referencia/Sentencies/Buida ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/export/index.html b/files/ca/web/javascript/reference/statements/export/index.html index c1d92ab504..fcf4f6283e 100644 --- a/files/ca/web/javascript/reference/statements/export/index.html +++ b/files/ca/web/javascript/reference/statements/export/index.html @@ -1,7 +1,8 @@ --- title: export -slug: Web/JavaScript/Referencia/Sentencies/export +slug: Web/JavaScript/Reference/Statements/export translation_of: Web/JavaScript/Reference/Statements/export +original_slug: Web/JavaScript/Referencia/Sentencies/export ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/for...of/index.html b/files/ca/web/javascript/reference/statements/for...of/index.html index 5cc16f52f8..0df66da1b8 100644 --- a/files/ca/web/javascript/reference/statements/for...of/index.html +++ b/files/ca/web/javascript/reference/statements/for...of/index.html @@ -1,7 +1,8 @@ --- title: for...of -slug: Web/JavaScript/Referencia/Sentencies/for...of +slug: Web/JavaScript/Reference/Statements/for...of translation_of: Web/JavaScript/Reference/Statements/for...of +original_slug: Web/JavaScript/Referencia/Sentencies/for...of ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/for/index.html b/files/ca/web/javascript/reference/statements/for/index.html index 00a16b62df..78f72b9850 100644 --- a/files/ca/web/javascript/reference/statements/for/index.html +++ b/files/ca/web/javascript/reference/statements/for/index.html @@ -1,7 +1,8 @@ --- title: for -slug: Web/JavaScript/Referencia/Sentencies/for +slug: Web/JavaScript/Reference/Statements/for translation_of: Web/JavaScript/Reference/Statements/for +original_slug: Web/JavaScript/Referencia/Sentencies/for ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/function/index.html b/files/ca/web/javascript/reference/statements/function/index.html index 37deff748f..207c3b0af8 100644 --- a/files/ca/web/javascript/reference/statements/function/index.html +++ b/files/ca/web/javascript/reference/statements/function/index.html @@ -1,7 +1,8 @@ --- title: function -slug: Web/JavaScript/Referencia/Sentencies/function +slug: Web/JavaScript/Reference/Statements/function translation_of: Web/JavaScript/Reference/Statements/function +original_slug: Web/JavaScript/Referencia/Sentencies/function ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/if...else/index.html b/files/ca/web/javascript/reference/statements/if...else/index.html index b45e9bea3c..5b7e36ad50 100644 --- a/files/ca/web/javascript/reference/statements/if...else/index.html +++ b/files/ca/web/javascript/reference/statements/if...else/index.html @@ -1,7 +1,8 @@ --- title: if...else -slug: Web/JavaScript/Referencia/Sentencies/if...else +slug: Web/JavaScript/Reference/Statements/if...else translation_of: Web/JavaScript/Reference/Statements/if...else +original_slug: Web/JavaScript/Referencia/Sentencies/if...else ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/index.html b/files/ca/web/javascript/reference/statements/index.html index e91e446cbf..d3eeca18da 100644 --- a/files/ca/web/javascript/reference/statements/index.html +++ b/files/ca/web/javascript/reference/statements/index.html @@ -1,6 +1,6 @@ --- title: Statements and declarations -slug: Web/JavaScript/Referencia/Sentencies +slug: Web/JavaScript/Reference/Statements tags: - JavaScript - NeedsTranslation @@ -8,6 +8,7 @@ tags: - TopicStub - statements translation_of: Web/JavaScript/Reference/Statements +original_slug: Web/JavaScript/Referencia/Sentencies ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/return/index.html b/files/ca/web/javascript/reference/statements/return/index.html index 5b3c3e902a..dc3b43ed79 100644 --- a/files/ca/web/javascript/reference/statements/return/index.html +++ b/files/ca/web/javascript/reference/statements/return/index.html @@ -1,7 +1,8 @@ --- title: return -slug: Web/JavaScript/Referencia/Sentencies/return +slug: Web/JavaScript/Reference/Statements/return translation_of: Web/JavaScript/Reference/Statements/return +original_slug: Web/JavaScript/Referencia/Sentencies/return ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/throw/index.html b/files/ca/web/javascript/reference/statements/throw/index.html index 37d13b964b..55de3592c1 100644 --- a/files/ca/web/javascript/reference/statements/throw/index.html +++ b/files/ca/web/javascript/reference/statements/throw/index.html @@ -1,7 +1,8 @@ --- title: throw -slug: Web/JavaScript/Referencia/Sentencies/throw +slug: Web/JavaScript/Reference/Statements/throw translation_of: Web/JavaScript/Reference/Statements/throw +original_slug: Web/JavaScript/Referencia/Sentencies/throw ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/javascript/reference/statements/while/index.html b/files/ca/web/javascript/reference/statements/while/index.html index d3997dbefd..072cad4cf7 100644 --- a/files/ca/web/javascript/reference/statements/while/index.html +++ b/files/ca/web/javascript/reference/statements/while/index.html @@ -1,7 +1,8 @@ --- title: while -slug: Web/JavaScript/Referencia/Sentencies/while +slug: Web/JavaScript/Reference/Statements/while translation_of: Web/JavaScript/Reference/Statements/while +original_slug: Web/JavaScript/Referencia/Sentencies/while ---
    {{jsSidebar("Statements")}}
    diff --git a/files/ca/web/opensearch/index.html b/files/ca/web/opensearch/index.html index adfa504760..55500ead3e 100644 --- a/files/ca/web/opensearch/index.html +++ b/files/ca/web/opensearch/index.html @@ -1,11 +1,12 @@ --- title: Addició de motors de cerca a les pàgines web -slug: Addició_de_motors_de_cerca_a_les_pàgines_web +slug: Web/OpenSearch tags: - Complements - Connectors_de_cerca translation_of: Web/OpenSearch translation_of_original: Web/API/Window/sidebar/Adding_search_engines_from_Web_pages +original_slug: Addició_de_motors_de_cerca_a_les_pàgines_web ---

    El Firefox utilitza codi JavaScript per a instaŀlar connectors de motors de cerca. Pot fer servir 3 formats: MozSearch, OpenSearch i Sherlock.

    Quan un codi JavaScript intenta instaŀlar un connector de cerca, el Firefox mostra un avís demanant a l'usuari permís per a instaŀlar-lo. diff --git a/files/ca/web/progressive_web_apps/index.html b/files/ca/web/progressive_web_apps/index.html index 53bd5eb866..2b9254a061 100644 --- a/files/ca/web/progressive_web_apps/index.html +++ b/files/ca/web/progressive_web_apps/index.html @@ -1,8 +1,9 @@ --- title: Disseny sensible (Responsive design) -slug: Web_Development/Mobile/Responsive_design +slug: Web/Progressive_web_apps translation_of: Web/Progressive_web_apps translation_of_original: Web/Guide/Responsive_design +original_slug: Web_Development/Mobile/Responsive_design ---

    Com una resposta als problemes associats a l'enfoc de desenvolupament basat en dos dissenys web separats per a cada plataforma, mòbil i escriptori, una idea relativament nova (de fet no tant) ha crescut en popularitat: oblidar-se de la detecció del user-agent des del servidor, i sustituir-ho per una plana que respongui del costat del client a les possibilitats del navegador. Aquest enfoc del problema s'ha convingut en anomenar-lo disseny web sensible. Igual que l'enfoc dels dissenys separats, el disseny web sensible té els seus avantatges i inconvenients.

    Avantatges

    diff --git a/files/ca/web/progressive_web_apps/responsive/media_types/index.html b/files/ca/web/progressive_web_apps/responsive/media_types/index.html index f3b14fb062..98b04144d1 100644 --- a/files/ca/web/progressive_web_apps/responsive/media_types/index.html +++ b/files/ca/web/progressive_web_apps/responsive/media_types/index.html @@ -1,9 +1,9 @@ --- title: Mitjà -slug: Web/Guide/CSS/Inici_en_CSS/Mitjà +slug: Web/Progressive_web_apps/Responsive/Media_types tags: - CSS - - 'CSS:Getting_Started' + - CSS:Getting_Started - Example - Guide - Intermediate @@ -12,6 +12,7 @@ tags: - NeedsUpdate - Web translation_of: Web/Progressive_web_apps/Responsive/Media_types +original_slug: Web/Guide/CSS/Inici_en_CSS/Mitjà ---

    {{CSSTutorialTOC}} {{previousPage("/en-US/docs/Web/Guide/CSS/Getting_Started/Tables", "Taules")}}

    diff --git a/files/ca/web/svg/tutorial/svg_and_css/index.html b/files/ca/web/svg/tutorial/svg_and_css/index.html index 6dac20b5a6..6d729fdfe1 100644 --- a/files/ca/web/svg/tutorial/svg_and_css/index.html +++ b/files/ca/web/svg/tutorial/svg_and_css/index.html @@ -1,9 +1,9 @@ --- title: SVG i CSS -slug: Web/Guide/CSS/Inici_en_CSS/SVG_i_CSS +slug: Web/SVG/Tutorial/SVG_and_CSS tags: - CSS - - 'CSS:Getting_Started' + - CSS:Getting_Started - Example - Guide - Intermediate @@ -12,6 +12,7 @@ tags: - SVG - Web translation_of: Web/SVG/Tutorial/SVG_and_CSS +original_slug: Web/Guide/CSS/Inici_en_CSS/SVG_i_CSS ---
    {{CSSTutorialTOC}}
    -- cgit v1.2.3-54-g00ecf