HTML5 interview questions
There are some common but basic questions which are expected from a frontend developer, if you are a core JS developer then you should know these questions, so here it is ?
There are some common but basic questions which are expected from a frontend developer, if you are a core JS developer then you should know these questions, so here it is ?
In class-based object-oriented programming, a constructor is a special type of subroutine called to create an object. It prepares the new object for use, often accepting arguments that the constructor uses to set required member variables. Since JavasScript is also an object-oriented programming launguage, there is also constructor methods in JS to create an object. […]
What is HTTP cookie? When a server communicates with client’s computer then for identification sever needs some sort of unique token from client side to identify specific client server and here comes the role of cookies. SO what are cookies. According to MDN An HTTP cookie (web cookie, browser cookie) is a small piece of […]
In the era of cloud , every application has been / being migrated from desktop to web server. And companies earlier having their older softwares on systems are creating the same as web app for easy and global approach of clients. Now the webapp could be categorized into two types – One is traditional Multi Page […]
So folks, sometimes it happens that you are saving some text with formatted data like HTML string but while displaying you don’t want to display it not as string but as formatted text.i.e. want to strip HTML tags from the content here is the slution for it:
Javascript Hoisting : Javascript a weekply typed language, and if we are not using the ‘strict’ mode in JS, there are so many code practices which can be avoided with Javascript unlike any other languages. One of these practise is that we can use a variable before declaring it.Yes, you heard it right; In JavaScript, […]
While designing one of my page I encountered with an interesting issue with which I juggled a lot.I was trying to align the image element as per design but the image element was not taking any margin at all in top or bottom but in horizontal direction only. So as per specification I have discovered […]
Normally HTML elements are rendered as box elements according to HTML specification. But the element could be shown in different manner. If not specified all the HTML elements inherit the default display property according to their behaviors. These default and basic properties are:- 1.inline 2.block 3.none display:none, property implies that element and its children elements […]