{"id":58,"date":"2017-04-13T02:17:45","date_gmt":"2017-04-13T02:17:45","guid":{"rendered":"http:\/\/www.gologica.com\/blog\/?p=58"},"modified":"2025-04-06T01:38:38","modified_gmt":"2025-04-06T01:38:38","slug":"javascript-intervew-questions","status":"publish","type":"post","link":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/","title":{"rendered":"Javascript Intervew Questions"},"content":{"rendered":"<p><strong>What is JavaScript?<\/strong><\/p>\n<p>JavaScript is a client-side as well as server side scripting language that can be inserted into HTML pages and is understood by web browsers. JavaScript is also an Object Oriented Programming language<\/p>\n<p><strong>Enumerate the differences between Java and JavaScript?<\/strong><\/p>\n<p>Java is a complete programming language. In contrast, JavaScript is a coded program that can be introduced to HTML pages. These two languages are not at all inter-dependent and are designed for the different intent.&nbsp; Java is an object \u2013 oriented programming (OOPS) or structured programming language like C++ or C whereas JavaScript is a client-side scripting language and it is said to be unstructured programming.<\/p>\n<p><strong>What are JavaScript types?<\/strong><\/p>\n<p>Following are the JavaScript types:<\/p>\n<ul>\n<li>Number<\/li>\n<li>String<\/li>\n<li>Boolean<\/li>\n<li>Function<\/li>\n<li>Object<\/li>\n<li>Null<\/li>\n<li>Undefined<\/li>\n<\/ul>\n<table style=\"background: #d9dde2;\">\n<tbody>\n<tr>\n<td style=\"border: 1px solid black;\">\n<h5 style=\"padding: 10px 10px 10px 10px;\"><strong> Are you Looking for Java Script Training? Please Enroll for Demo <a href=\"https:\/\/www.gologica.com\/course\/javascript\/\" target=\"_blank\" rel=\"noopener noreferrer\">Java Script..! <\/a><\/strong><\/h5>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>What is the use of isNaN function?<\/strong><\/p>\n<p>isNan function returns true if the argument is not a number otherwise it is false.<\/p>\n<p><strong>What is called Variable typing in Javascript?<\/strong><\/p>\n<p>Variable typing is used to assign a number to a variable and the same variable can be assigned to a string.<\/p>\n<p>Example<\/p>\n<div id=\"crayon-58da5bb96f511433900601\" class=\"crayon-syntax crayon-theme-classic crayon-font-monaco crayon-os-pc print-yes notranslate\" data-settings=\" minimize scroll-mouseover\">\n<div class=\"crayon-plain-wrap\"><\/div>\n<div class=\"crayon-main\">\n<table class=\"crayon-table\">\n<tbody>\n<tr class=\"crayon-row\">\n<td class=\"crayon-nums \" data-settings=\"show\">\n<div class=\"crayon-nums-content\">\n<div class=\"crayon-num\" data-line=\"crayon-58da5bb96f511433900601-1\">1<\/div>\n<div class=\"crayon-num crayon-striped-num\" data-line=\"crayon-58da5bb96f511433900601-2\">2<\/div>\n<div class=\"crayon-num\" data-line=\"crayon-58da5bb96f511433900601-3\">3<\/div>\n<\/div>\n<\/td>\n<td class=\"crayon-code\">\n<div class=\"crayon-pre\">\n<div id=\"crayon-58da5bb96f511433900601-1\" class=\"crayon-line\"><span class=\"crayon-v\">i<\/span> <span class=\"crayon-o\">=<\/span> <span class=\"crayon-cn\">10<\/span><span class=\"crayon-sy\">;<\/span><\/div>\n<div id=\"crayon-58da5bb96f511433900601-2\" class=\"crayon-line crayon-striped-line\"><\/div>\n<div id=\"crayon-58da5bb96f511433900601-3\" class=\"crayon-line\"><span class=\"crayon-e \">i<\/span> <span class=\"crayon-o\">=<\/span> <span class=\"crayon-s\">&#8220;string&#8221;<\/span><span class=\"crayon-sy\">;<\/span><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<p>This is called variable typing.<\/p>\n<p><strong>How can you convert the string of any base to integer in JavaScript?<\/strong><\/p>\n<p>The parseInt() function is used to convert numbers between different bases. parseInt() takes the string to be converted as its first parameter, and the second parameter is the base of the given string.<\/p>\n<p>In order to convert 4F (of base 16) to integer, the code used will be \u2013<\/p>\n<div id=\"crayon-58da5bb96f513456453938\" class=\"crayon-syntax crayon-theme-classic crayon-font-monaco crayon-os-pc print-yes notranslate\" data-settings=\" minimize scroll-mouseover\">\n<div class=\"crayon-plain-wrap\"><\/div>\n<div class=\"crayon-main\">\n<table class=\"crayon-table\">\n<tbody>\n<tr class=\"crayon-row\">\n<td class=\"crayon-nums \" data-settings=\"show\">\n<div class=\"crayon-nums-content\">\n<div class=\"crayon-num\" data-line=\"crayon-58da5bb96f513456453938-1\">1<\/div>\n<\/div>\n<\/td>\n<td class=\"crayon-code\">\n<div class=\"crayon-pre\">\n<div id=\"crayon-58da5bb96f513456453938-1\" class=\"crayon-line\"><span class=\"crayon-r\">parseInt<\/span> <span class=\"crayon-sy\">(<\/span><span class=\"crayon-s\">&#8220;4F&#8221;<\/span><span class=\"crayon-sy\">,<\/span> <span class=\"crayon-cn\">16<\/span><span class=\"crayon-sy\">)<\/span><span class=\"crayon-sy\">;<\/span><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<p><strong>Explain the difference between \u201c==\u201d&nbsp;and \u201c===\u201d?<\/strong><\/p>\n<p>\u201c==\u201d checks only for equality in value whereas \u201c===\u201d is a stricter equality test and returns false if either the value or the type of the two variables are different.<\/p>\n<p><strong>What would be the result of 3+2+\u201d7\u2033?<\/strong><\/p>\n<p>Since 3 and 2 are integers, they will be added numerically. And since 7 is a string, its concatenation will be done. So the result would be 57.<\/p>\n<p><strong>Explain how to detect the operating system on the client machine?<\/strong><\/p>\n<p>In order to detect the operating system on the client machine, the navigator.appVersion string (property) should be used.<\/p>\n<p><strong>What do mean by NULL in Javascript?<\/strong><\/p>\n<p>The NULL value is used to represent no value or no object.&nbsp; It implies no object or null string, no valid boolean value, no number and no array object.<\/p>\n<p><strong>What is the function of delete operator?<\/strong><\/p>\n<p>The functionality of delete operator is used to delete all variables and objects in a program but it cannot delete variables declared with VAR keyword.<\/p>\n<p><strong>What is an undefined value in JavaScript?<\/strong><\/p>\n<p>Undefined value means the<\/p>\n<ul>\n<li>Variable used in the code doesn\u2019t exist<\/li>\n<li>Variable is not assigned to any value<\/li>\n<li>Property doesn\u2019t exist<\/li>\n<\/ul>\n<p><strong>What are all the types of Pop up boxes available in JavaScript?<\/strong><\/p>\n<ul>\n<li>Alert<\/li>\n<li>Confirm and<\/li>\n<li>Prompt<\/li>\n<\/ul>\n<p><strong>What is the use of Void(0)?<\/strong><\/p>\n<p>Void(0) is used to prevent the page from refreshing and parameter \u201czero\u201d is passed while calling.<\/p>\n<p>Void(0) is used to call another method without refreshing the page.<\/p>\n<p><strong>How can a page be forced to load another page in JavaScript?<\/strong><\/p>\n<p>The following code has to be inserted to achieve the desired effect:<\/p>\n<div id=\"crayon-58da5bb96f515270896022\" class=\"crayon-syntax crayon-theme-classic crayon-font-monaco crayon-os-pc print-yes notranslate\" data-settings=\" minimize scroll-mouseover\">\n<div class=\"crayon-main\">\n<table class=\"crayon-table\">\n<tbody>\n<tr class=\"crayon-row\">\n<td class=\"crayon-nums \" data-settings=\"show\">\n<div class=\"crayon-nums-content\">\n<div class=\"crayon-num\" data-line=\"crayon-58da5bb96f515270896022-1\">1<\/div>\n<div class=\"crayon-num crayon-striped-num\" data-line=\"crayon-58da5bb96f515270896022-2\">2<\/div>\n<div class=\"crayon-num\" data-line=\"crayon-58da5bb96f515270896022-3\">3<\/div>\n<\/div>\n<\/td>\n<td class=\"crayon-code\">\n<div class=\"crayon-pre\">\n<div id=\"crayon-58da5bb96f515270896022-1\" class=\"crayon-line\"><span class=\"crayon-ta\">&lt;script <\/span><span class=\"crayon-e \">language<\/span><span class=\"crayon-o\">=<\/span><span class=\"crayon-s\">&#8220;JavaScript&#8221;<\/span> <span class=\"crayon-e \">type<\/span><span class=\"crayon-o\">=<\/span><span class=\"crayon-s\">&#8220;text\/javascript&#8221;<\/span> <span class=\"crayon-o\">&gt;<\/span><\/div>\n<div id=\"crayon-58da5bb96f515270896022-2\" class=\"crayon-line crayon-striped-line\"><\/div>\n<div id=\"crayon-58da5bb96f515270896022-3\" class=\"crayon-line\"><span class=\"crayon-o\">&lt;<\/span><span class=\"crayon-o\">!<\/span><span class=\"crayon-o\">&#8212;<\/span> <span class=\"crayon-v\">location<\/span><span class=\"crayon-sy\">.<\/span><span class=\"crayon-e \">href<\/span><span class=\"crayon-o\">=<\/span><span class=\"crayon-s\">&#8220;http:\/\/newhost\/newpath\/newfile.html&#8221;<\/span><span class=\"crayon-sy\">;<\/span> <span class=\"crayon-c\">\/\/&#8211;&gt;&lt;\/script&gt;<\/span><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<p><strong>What is the data type of variables of in JavaScript?<\/strong><\/p>\n<p>All variables in the JavaScript are object data types.<\/p>\n<p><strong>What is the difference between an alert box and a confirmation box?<\/strong><\/p>\n<p>An alert box displays only one button which is the OK button.<\/p>\n<p>But a Confirmation box displays two buttons namely OK and cancel.<\/p>\n<p><strong>What are escape characters?<\/strong><\/p>\n<p>Escape characters (Backslash) is used when working with special characters like single quotes, double quotes, apostrophes and ampersands. Place backslash before the characters to make it display.<\/p>\n<p>Example:<\/p>\n<div id=\"crayon-58da5bb96f517168510804\" class=\"crayon-syntax crayon-theme-classic crayon-font-monaco crayon-os-pc print-yes notranslate\" data-settings=\" minimize scroll-mouseover\">\n<div class=\"crayon-main\">\n<table class=\"crayon-table\">\n<tbody>\n<tr class=\"crayon-row\">\n<td class=\"crayon-nums \" data-settings=\"show\">\n<div class=\"crayon-nums-content\">\n<div class=\"crayon-num\" data-line=\"crayon-58da5bb96f517168510804-1\">1<\/div>\n<div class=\"crayon-num crayon-striped-num\" data-line=\"crayon-58da5bb96f517168510804-2\">2<\/div>\n<div class=\"crayon-num\" data-line=\"crayon-58da5bb96f517168510804-3\">3<\/div>\n<\/div>\n<\/td>\n<td class=\"crayon-code\">\n<div class=\"crayon-pre\">\n<div id=\"crayon-58da5bb96f517168510804-1\" class=\"crayon-line\"><span class=\"crayon-v\">document<\/span><span class=\"crayon-sy\">.<\/span><span class=\"crayon-i\">write<\/span> <span class=\"crayon-s\">&#8220;I m a &#8220;<\/span><span class=\"crayon-i\">good<\/span><span class=\"crayon-s\">&#8221; boy&#8221;<\/span><\/div>\n<div id=\"crayon-58da5bb96f517168510804-2\" class=\"crayon-line crayon-striped-line\"><\/div>\n<div id=\"crayon-58da5bb96f517168510804-3\" class=\"crayon-line\"><span class=\"crayon-v\">document<\/span><span class=\"crayon-sy\">.<\/span><span class=\"crayon-i\">write<\/span> <span class=\"crayon-s\">&#8220;I m a \\&#8221;good\\&#8221; boy&#8221;<\/span><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<p><strong>What are JavaScript Cookies?<\/strong><\/p>\n<p>Cookies are the small test files stored in a computer and it gets created when the user visits the websites to store information that they need. Example could be User Name details and shopping cart information from the previous visits.<\/p>\n<p><strong>Explain what is pop()method in JavaScript?<\/strong><\/p>\n<p>The pop() method is similar as the shift() method but the difference is that the Shift method works at the start of the array.&nbsp; Also the pop() method take the last element off of the given array and returns it. The array on which is called is then altered.<br \/>\nExample:<br \/>\nvar cloths = [\u201cShirt\u201d, \u201cPant\u201d, \u201cTShirt\u201d];<br \/>\ncloths.pop();<br \/>\n\/\/Now cloth becomes Shirt,Pant<\/p>\n<p><strong>Whether JavaScript has concept level scope?<\/strong><\/p>\n<p>No. JavaScript does not have concept level scope. The variable declared inside the function has scope inside the function.<\/p>\n<p><strong>Mention what is the disadvantage of using innerHTML in JavaScript?<\/strong><\/p>\n<p>If you use innerHTML in JavaScript the disadvantage is<\/p>\n<ul>\n<li>Content is replaced everywhere<\/li>\n<li>We cannot use like \u201cappending to innerHTML\u201d<\/li>\n<li>Even if you use +=like \u201cinnerHTML = innerHTML + \u2018html\u2019\u201d still the old content is replaced by html<\/li>\n<li>The entire innerHTML content is re-parsed and build into elements, therefore its much slower<\/li>\n<li>The innerHTML does not provide validation and therefore we can potentially insert valid and broken HTML in the document and break it<\/li>\n<\/ul>\n<table style=\"background: #d9dde2;\">\n<tbody>\n<tr>\n<td style=\"border: 1px solid black;\">\n<h5 style=\"padding: 10px 10px 10px 10px;\"><strong> Are you Looking for Java Script Online Training? Please Enroll for Demo <a href=\"https:\/\/www.gologica.com\/course\/javascript\/\" target=\"_blank\" rel=\"noopener noreferrer\">Java Script..! <\/a><\/strong><\/h5>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>What is break and continue statements?<\/strong><\/p>\n<p>Break statement exits from the current loop.<\/p>\n<p>Continue statement continues with next statement of the loop.<\/p>\n<p><strong>What are the two basic groups of dataypes in JavaScript?<\/strong><\/p>\n<p>They are as \u2013<\/p>\n<ul>\n<li>Primitive<\/li>\n<li>Reference types.<\/li>\n<\/ul>\n<p>Primitive types are number and Boolean data types. Reference types are more complex types like strings and dates.<\/p>\n<p><strong>How generic objects can be created?<\/strong><\/p>\n<p>Generic objects can be created as:<\/p>\n<div id=\"crayon-58da5bb96f51a939084967\" class=\"crayon-syntax crayon-theme-classic crayon-font-monaco crayon-os-pc print-yes notranslate\" data-settings=\" minimize scroll-mouseover\">\n<div class=\"crayon-main\">\n<table class=\"crayon-table\">\n<tbody>\n<tr class=\"crayon-row\">\n<td class=\"crayon-nums \" data-settings=\"show\">\n<div class=\"crayon-nums-content\">\n<div class=\"crayon-num\" data-line=\"crayon-58da5bb96f51a939084967-1\">1<\/div>\n<\/div>\n<\/td>\n<td class=\"crayon-code\">\n<div class=\"crayon-pre\">\n<div id=\"crayon-58da5bb96f51a939084967-1\" class=\"crayon-line\"><span class=\"crayon-t\">var<\/span> <span class=\"crayon-v\">I<\/span> <span class=\"crayon-o\">=<\/span> <span class=\"crayon-r\">new<\/span> <span class=\"crayon-t\">object<\/span><span class=\"crayon-sy\">(<\/span><span class=\"crayon-sy\">)<\/span><span class=\"crayon-sy\">;<\/span><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>What is JavaScript? JavaScript is a client-side as well as server side scripting language that can be inserted into HTML &hellip;<\/p>\n","protected":false},"author":1,"featured_media":2202,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"aside","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"pmpro_default_level":"","footnotes":""},"categories":[15224],"tags":[],"coauthors":[182],"class_list":["post-58","post","type-post","status-publish","format-aside","has-post-thumbnail","hentry","category-fullstack","post_format-post-format-aside","pmpro-has-access","user-has-not-earned"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Javascript Intervew Questions - GoLogica<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Javascript Intervew Questions - GoLogica\" \/>\n<meta property=\"og:description\" content=\"What is JavaScript? JavaScript is a client-side as well as server side scripting language that can be inserted into HTML &hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/\" \/>\n<meta property=\"og:site_name\" content=\"GoLogica\" \/>\n<meta property=\"article:published_time\" content=\"2017-04-13T02:17:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-06T01:38:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/04\/JavaScriptI-Interview-Questions-24.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"175\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62\"},\"headline\":\"Javascript Intervew Questions\",\"datePublished\":\"2017-04-13T02:17:45+00:00\",\"dateModified\":\"2025-04-06T01:38:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/\"},\"wordCount\":956,\"image\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/04\/JavaScriptI-Interview-Questions-24.jpg\",\"articleSection\":[\"Fullstack\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/\",\"url\":\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/\",\"name\":\"Javascript Intervew Questions - GoLogica\",\"isPartOf\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/04\/JavaScriptI-Interview-Questions-24.jpg\",\"datePublished\":\"2017-04-13T02:17:45+00:00\",\"dateModified\":\"2025-04-06T01:38:38+00:00\",\"author\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#primaryimage\",\"url\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/04\/JavaScriptI-Interview-Questions-24.jpg\",\"contentUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/04\/JavaScriptI-Interview-Questions-24.jpg\",\"width\":300,\"height\":175,\"caption\":\"JavaScriptI Interview Questions\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.gologica.com\/elearning\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Javascript Intervew Questions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#website\",\"url\":\"https:\/\/www.gologica.com\/elearning\/\",\"name\":\"GoLogica\",\"description\":\"E-Learning Portal\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.gologica.com\/elearning\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/image\/d0ab308492a1bfcbec1a1ce1637996db\",\"url\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg\",\"contentUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg\",\"caption\":\"admin\"},\"url\":\"https:\/\/www.gologica.com\/elearning\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Javascript Intervew Questions - GoLogica","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/","og_locale":"en_US","og_type":"article","og_title":"Javascript Intervew Questions - GoLogica","og_description":"What is JavaScript? JavaScript is a client-side as well as server side scripting language that can be inserted into HTML &hellip;","og_url":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/","og_site_name":"GoLogica","article_published_time":"2017-04-13T02:17:45+00:00","article_modified_time":"2025-04-06T01:38:38+00:00","og_image":[{"width":300,"height":175,"url":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/04\/JavaScriptI-Interview-Questions-24.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#article","isPartOf":{"@id":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/"},"author":{"name":"admin","@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62"},"headline":"Javascript Intervew Questions","datePublished":"2017-04-13T02:17:45+00:00","dateModified":"2025-04-06T01:38:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/"},"wordCount":956,"image":{"@id":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/04\/JavaScriptI-Interview-Questions-24.jpg","articleSection":["Fullstack"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/","url":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/","name":"Javascript Intervew Questions - GoLogica","isPartOf":{"@id":"https:\/\/www.gologica.com\/elearning\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#primaryimage"},"image":{"@id":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/04\/JavaScriptI-Interview-Questions-24.jpg","datePublished":"2017-04-13T02:17:45+00:00","dateModified":"2025-04-06T01:38:38+00:00","author":{"@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62"},"breadcrumb":{"@id":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#primaryimage","url":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/04\/JavaScriptI-Interview-Questions-24.jpg","contentUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/04\/JavaScriptI-Interview-Questions-24.jpg","width":300,"height":175,"caption":"JavaScriptI Interview Questions"},{"@type":"BreadcrumbList","@id":"https:\/\/www.gologica.com\/elearning\/javascript-intervew-questions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.gologica.com\/elearning\/"},{"@type":"ListItem","position":2,"name":"Javascript Intervew Questions"}]},{"@type":"WebSite","@id":"https:\/\/www.gologica.com\/elearning\/#website","url":"https:\/\/www.gologica.com\/elearning\/","name":"GoLogica","description":"E-Learning Portal","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.gologica.com\/elearning\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/image\/d0ab308492a1bfcbec1a1ce1637996db","url":"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg","contentUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg","caption":"admin"},"url":"https:\/\/www.gologica.com\/elearning\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts\/58","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/comments?post=58"}],"version-history":[{"count":4,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts\/58\/revisions"}],"predecessor-version":[{"id":6753,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts\/58\/revisions\/6753"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/media\/2202"}],"wp:attachment":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/media?parent=58"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/categories?post=58"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/tags?post=58"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/coauthors?post=58"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}