Found 8895 Articles for Front End Technology

What are JavaScript language resources?

mkotla
Updated on 02-Jan-2020 08:27:18

115 Views

JavaScript resources include resources for the scripting languages standard ECMAScript.This is standardized in the ECMA-262 and ECMA-402 specifications.Here is the ECMAScript standard for the current editions:ECMA-2629th Edition - This is ECMAScript 2018 Language Specification.ECMA-402 5th Edition - This is ECMAScript 2018 Internationalization API Specification.Here are the ECMAScript standards for historical editions:ECMA-262 7th Edition - ECMAScript 2016 Language Specification.ECMA-402 3rd Edition - ECMAScript 2016 Internationalization API SpecificationECMA-262 8th Edition - ECMAScript 2017 Language Specification ECMA-402 4th Edition - ECMAScript 2017 Internationalization API Specification

What is core JavaScript language?

Giri Raju
Updated on 30-Jul-2019 22:30:20

2K+ Views

Core JavaScript is the basis of the JavaScript language. JavaScript is a dynamic computer programming language. It is lightweight and most commonly used as apart from web pages, whose implementations allow a client-side script to interact with the user and make dynamic pages.The JavaScript language has the following components: Core JavaScript:Core JavaScript is the basic of the JavaScript language supports both the client and server side.Client-side javascript (CSJS)The client-side JavaScript has core JavaScript elements.  For functioning, it also has properties and methods, which helps developers.Server-side JavaScript (SSJS) Server-side JavaScript, as the name suggests runs on server-side. The core is part of client-side ... Read More

How to minimize the use of global variables in JavaScript?

Johar Ali
Updated on 12-Sep-2019 07:30:40

188 Views

A global variable has global scope which means it can be defined anywhere in your JavaScript code. To minimize the usage of global variables, use consistent variables around different parts of your project.var myValue = {    common: function(){       //Add code    },    val1: {       myVar1: "Demo String One",       func1: function(){          //Add some code       },    }    val2: {       myVar1: "Demo String Two",       func1: function(){          //Add another code       },    }    val3: {       myVar1: "Demo String Three",       func1: function(){          //Add another code here       }    } };

How and why to avoid global variables in JavaScript?

Ali
Ali
Updated on 13-Jun-2020 07:10:36

1K+ Views

Avoid global variables or minimize the usage of global variables in JavaScript. This is because global variables are easily overwritten by other scripts. Global Variables are not bad and not even a security concern, but it shouldn’t overwrite values of another variable.On the usage of more global variables in our code, it may lead to a maintenance issue. Let’s say we added a variable with the same name. In that case, get ready for some serious bugs.To avoid the usage of global variables, use the local variables and wrap your code in closures. You can also avoid this by wrapping ... Read More

Do I need to use a semicolon after every function in JavaScript?

V Jyothi
Updated on 12-Sep-2019 07:35:58

140 Views

Commonly, adding semicolons in JavaScript is optional. Simple statements in JavaScript are generally followed by a semicolon character, just as they are in C, C++, and Java. JavaScript, however, allows you to omit this semicolon if each of your statements is placed on a separate line.No need of a semicolon in a function declaration:function functionname(s) { }If the function is written as a statement, it should have a semicolon like any other statement in JavaScript:var a = function functionname(s) { };

What is CDATA in HTML?

Bhanu Priya
Updated on 04-Oct-2023 16:41:39

2K+ Views

The full form of CDATA is Character Data, it is one of the sections in XML which is used to interpret character data. It treats the text data as raw text in character format. The Tags inside a CDATA section are not treated as markup and entities are also not expanded. CDATA section is recognized by the delimiter "]]>" - that indicates the end of the CDATA section. CDATA sections are not nested. Syntax The usage/syntax of CDATA used in XML is − syntax with example:- Example Following is the XML which demonstrates the usage of CDATA ... Read More

Which is the best tutorial site to learn HTML?

Nikitha N
Updated on 08-May-2020 11:13:35

104 Views

HTML stands for Hyper Text Markup Language, which is the most widely used language on Web to develop web pages. HTML was created by Berners-Lee in late 1991 but "HTML 2.0" was the first standard HTML specification which was published in 1995. HTML 4.01 was a major version of HTML and it was published in late 1999. However, HTML 4.01 version is widely used but currently we are having HTML-5 version, which is an extension to HTML 4.01, and this version published in 2012.To learn HTML, refer HTML tutorial. It explains the below given HTML concepts perfectly:HTML Basic TagsElementsAttributesHTML Phrase ... Read More

Which is the best tutorial site to learn jQuery?

Srinivas Gorla
Updated on 16-Jun-2020 07:42:22

81 Views

jQuery is a fast and concise JavaScript Library created by a John Resig in 2006 with a nice motto − Write less, do more.jQuery simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.Here is the list of important core features supported by jQuery:DOM manipulation − jQuery made it easy to select a DOM elements, traverse them and modifying their content by using a cross-browser open source selector engine called as Sizzle.Event handling − The jQuery offers an elegant way to capture a wide variety of events, such as a user clicking on a link, without ... Read More

Which is the best tutorial site to learn JavaScript?

Abhinanda Shri
Updated on 30-Jul-2019 22:30:20

119 Views

JavaScript is a dynamic computer programming language. It is lightweight and most commonly used as a part of web pages, whose implementations allow a client-side script to interact with the user and make dynamic pages. It is an interpreted programming language with object-oriented capabilities.To learn JavaScript, refer to the following tutorial. It explains the below-given JavaScript concepts perfectly.OverviewSyntaxVariablesOperatorsLoop ControlFunctionsEventsCookiesDialog BoxesIt also explains the following advanced topics with live examples.Error HandlingValidationsAnimationMultimediaDebugging

List top JavaScript Frameworks

Ankitha Reddy
Updated on 30-Jul-2019 22:30:20

124 Views

Dojo It is an open source modular JavaScript library came into existence to a develop cross-platform, applications and a websites. It was developed by Alex Russell, Dylan Schiemann and other contributors in 2004. AngularJS AngularJS is an open source web application framework. It was originally developed in 2009 by Misko Hevery and Adam Abrons. It is now maintained by Google. Backbone.js BackboneJS is a lightweight JavaScript library that allows to develop and structure the client side applications that run in a web browser. It offers MVC framework which abstracts data into models, DOM into views and bind these two using ... Read More

Advertisements