61⟩ Tell me Is JavaScript case sensitive?
Yes JavaScript is case sensitive
“User Interface Expert based Frequently Asked Questions by expert members with experience as GUI Developer. These questions and answers will help you strengthen your technical skills, prepare for the new job test and quickly revise the concepts”
Yes JavaScript is case sensitive
Trick question, there is no difference. HTML5 is a continuum of HTML and just a souped up version of the original HTML. There has been no major paradigm shift.
Web Workers are background scripts that do not interfere with the user interface or user interactions on a webpage, allowing HTML to render uninterrupted while JavaScript works in the background.
There are many new form elements including: datalist, datetime, output, keygen, date, month, week, time, number, range, email, and url.
Instead of typing out a ridiculously long DOCTYPE statement to tell the browser how to render your webpage, this long line of code has been truncated to <!doctype html>.
Canvas and WebGL. <Canvas> is a new element that acts as a container for graphical elements like images and graphics. Coupled with JavaScript, it supports 2D graphics. WebGL stands for Web Graphics Language, a free cross-platform API that is used for generating 3D graphics in web browsers.
Billeted lists use the <ul> tag, which stands for "unordered," whereas <ol> is used to create an ordered list.
"==" checks equality, "===" checks equality and type
function function_name(){
global $the_global_var;
}
var t = "Hello World";
console.log(t);
Asynchronous JavaScript and XML. Client side process used for GET, POST etc to get new data without having to refresh the page.
$('.selected');
script tag, linked to a jquery CDN or locally hosted file.
include() will raise a warning if it fails, require() will raise a fatal error.
<Canvas> is an element that manipulates two-dimensional (2D) pixels while Scalable Vector Graphics works in 2D and three-dimensional (3D) vectors. Essentially, <Canvas> is to SVG as Photoshop is to Illustrator.
var colors = ['red, 'yellow', 'green', 'blue'];
/* This is a comment block */
//This is a commented out line
There are several:
☛ <article>
☛ <aside>
☛ <bdi>
☛ <command>
☛ details>
☛ <figure>
☛ <figcaption>
☛ <summary>
☛ <header>
☛ <footer>
☛ <hgroup>
☛ <mark>
☛ <meter>
☛ <nav>
☛ <progress>
☛ <ruby>
☛ <rt>
☛ <section>
☛ <time>
☛ and <wpr>
Reduce image sizes, remove unnecessary widgets, HTTP compression, put CSS at the top and script references at the bottom or in external files, reduce lookups, minimize redirects, caching, etc.
The HTML5 data- attribute is a new addition that assigns custom data to an element. It was built to store sensitive or private data that is exclusive to a page or application, for which there are no other matching attributes or elements.