A Pen by Afnan Ahmad on CodePen.
Created
April 29, 2023 10:44
-
-
Save neisdev/6be4cc526c031f33c5fdc814e54de978 to your computer and use it in GitHub Desktop.
Full JavaScript Notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>JS Ultimate Notes</title> | |
<link rel="shortcut icon" href="https://drive.google.com/thumbnail?id=1VPohOBCljSvflSFodDVttIWDc0_sa19N" type="image/x-icon"> | |
<style> | |
/* PrismJS 1.27.0 | |
https://prismjs.com/download.html#themes=prism-okaidia&languages=markup+css+clike+javascript&plugins=line-numbers+show-language+normalize-whitespace+toolbar+copy-to-clipboard */ | |
code[class*=language-],pre[class*=language-]{color:#f8f8f2;background:0 0;text-shadow:0 1px rgba(0,0,0,.3);font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto;border-radius:.3em}:not(pre)>code[class*=language-],pre[class*=language-]{background:#272822}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#8292a2}.token.punctuation{color:#f8f8f2}.token.namespace{opacity:.7}.token.constant,.token.deleted,.token.property,.token.symbol,.token.tag{color:#f92672}.token.boolean,.token.number{color:#ae81ff}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#a6e22e}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url,.token.variable{color:#f8f8f2}.token.atrule,.token.attr-value,.token.class-name,.token.function{color:#e6db74}.token.keyword{color:#66d9ef}.token.important,.token.regex{color:#fd971f}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help} | |
pre[class*=language-].line-numbers{position:relative;padding-left:3.8em;counter-reset:linenumber}pre[class*=language-].line-numbers>code{position:relative;white-space:inherit}.line-numbers .line-numbers-rows{position:absolute;pointer-events:none;top:0;font-size:100%;left:-3.8em;width:3em;letter-spacing:-1px;border-right:1px solid #999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.line-numbers-rows>span{display:block;counter-increment:linenumber}.line-numbers-rows>span:before{content:counter(linenumber);color:#999;display:block;padding-right:.8em;text-align:right} | |
div.code-toolbar{position:relative}div.code-toolbar>.toolbar{position:absolute;z-index:10;top:.3em;right:.2em;transition:opacity .3s ease-in-out;opacity:0}div.code-toolbar:hover>.toolbar{opacity:1}div.code-toolbar:focus-within>.toolbar{opacity:1}div.code-toolbar>.toolbar>.toolbar-item{display:inline-block}div.code-toolbar>.toolbar>.toolbar-item>a{cursor:pointer}div.code-toolbar>.toolbar>.toolbar-item>button{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}div.code-toolbar>.toolbar>.toolbar-item>a,div.code-toolbar>.toolbar>.toolbar-item>button,div.code-toolbar>.toolbar>.toolbar-item>span{color:#bbb;font-size:.8em;padding:0 .5em;background:#f5f2f0;background:rgba(224,224,224,.2);box-shadow:0 2px 0 0 rgba(0,0,0,.2);border-radius:.5em}div.code-toolbar>.toolbar>.toolbar-item>a:focus,div.code-toolbar>.toolbar>.toolbar-item>a:hover,div.code-toolbar>.toolbar>.toolbar-item>button:focus,div.code-toolbar>.toolbar>.toolbar-item>button:hover,div.code-toolbar>.toolbar>.toolbar-item>span:focus,div.code-toolbar>.toolbar>.toolbar-item>span:hover{color:inherit;text-decoration:none} | |
/* My Style file */ | |
#mainhead { | |
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", | |
"Lucida Sans Unicode", Geneva, Verdana, sans-serif; | |
text-align: center; | |
} | |
.header { | |
position: fixed; | |
top: 0; | |
z-index: 1; | |
width: 100%; | |
background-color: #f1f1f1; | |
} | |
/* The progress container (grey background) */ | |
.progress-container { | |
width: 100%; | |
height: 8px; | |
background: #ccc; | |
} | |
/* The progress bar (scroll indicator) */ | |
.progress-bar { | |
height: 8px; | |
background: cyan; | |
width: 0%; | |
} | |
.notescontainer { | |
width: 90%; | |
margin: auto; | |
background-color: white; | |
border-radius: 1rem; | |
padding: 0.25rem; | |
} | |
.s{ | |
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", | |
"Lucida Sans Unicode", Geneva, Verdana, sans-serif; | |
} | |
body{ | |
background-color: lightgrey; | |
} | |
.btn{ | |
background-color: darkcyan; | |
color:white; | |
padding: 0.4rem; | |
border:none; | |
border-radius: 0.6rem; | |
cursor:pointer; | |
} | |
.download{ | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
margin-top: 1rem; | |
} | |
</style> | |
<script> | |
//Downloading the pdf file | |
function download(){ | |
window.print(); | |
} | |
/* PrismJS 1.27.0 | |
https://prismjs.com/download.html#themes=prism-okaidia&languages=markup+css+clike+javascript&plugins=line-numbers+show-language+normalize-whitespace+toolbar+copy-to-clipboard */ | |
var _self="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{},Prism=function(u){var t=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,n=0,e={},M={manual:u.Prism&&u.Prism.manual,disableWorkerMessageHandler:u.Prism&&u.Prism.disableWorkerMessageHandler,util:{encode:function e(n){return n instanceof W?new W(n.type,e(n.content),n.alias):Array.isArray(n)?n.map(e):n.replace(/&/g,"&").replace(/</g,"<").replace(/\u00a0/g," ")},type:function(e){return Object.prototype.toString.call(e).slice(8,-1)},objId:function(e){return e.__id||Object.defineProperty(e,"__id",{value:++n}),e.__id},clone:function t(e,r){var a,n;switch(r=r||{},M.util.type(e)){case"Object":if(n=M.util.objId(e),r[n])return r[n];for(var i in a={},r[n]=a,e)e.hasOwnProperty(i)&&(a[i]=t(e[i],r));return a;case"Array":return n=M.util.objId(e),r[n]?r[n]:(a=[],r[n]=a,e.forEach(function(e,n){a[n]=t(e,r)}),a);default:return e}},getLanguage:function(e){for(;e;){var n=t.exec(e.className);if(n)return n[1].toLowerCase();e=e.parentElement}return"none"},setLanguage:function(e,n){e.className=e.className.replace(RegExp(t,"gi"),""),e.classList.add("language-"+n)},currentScript:function(){if("undefined"==typeof document)return null;if("currentScript"in document)return document.currentScript;try{throw new Error}catch(e){var n=(/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(e.stack)||[])[1];if(n){var t=document.getElementsByTagName("script");for(var r in t)if(t[r].src==n)return t[r]}return null}},isActive:function(e,n,t){for(var r="no-"+n;e;){var a=e.classList;if(a.contains(n))return!0;if(a.contains(r))return!1;e=e.parentElement}return!!t}},languages:{plain:e,plaintext:e,text:e,txt:e,extend:function(e,n){var t=M.util.clone(M.languages[e]);for(var r in n)t[r]=n[r];return t},insertBefore:function(t,e,n,r){var a=(r=r||M.languages)[t],i={};for(var l in a)if(a.hasOwnProperty(l)){if(l==e)for(var o in n)n.hasOwnProperty(o)&&(i[o]=n[o]);n.hasOwnProperty(l)||(i[l]=a[l])}var s=r[t];return r[t]=i,M.languages.DFS(M.languages,function(e,n){n===s&&e!=t&&(this[e]=i)}),i},DFS:function e(n,t,r,a){a=a||{};var i=M.util.objId;for(var l in n)if(n.hasOwnProperty(l)){t.call(n,l,n[l],r||l);var o=n[l],s=M.util.type(o);"Object"!==s||a[i(o)]?"Array"!==s||a[i(o)]||(a[i(o)]=!0,e(o,t,l,a)):(a[i(o)]=!0,e(o,t,null,a))}}},plugins:{},highlightAll:function(e,n){M.highlightAllUnder(document,e,n)},highlightAllUnder:function(e,n,t){var r={callback:t,container:e,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};M.hooks.run("before-highlightall",r),r.elements=Array.prototype.slice.apply(r.container.querySelectorAll(r.selector)),M.hooks.run("before-all-elements-highlight",r);for(var a,i=0;a=r.elements[i++];)M.highlightElement(a,!0===n,r.callback)},highlightElement:function(e,n,t){var r=M.util.getLanguage(e),a=M.languages[r];M.util.setLanguage(e,r);var i=e.parentElement;i&&"pre"===i.nodeName.toLowerCase()&&M.util.setLanguage(i,r);var l={element:e,language:r,grammar:a,code:e.textContent};function o(e){l.highlightedCode=e,M.hooks.run("before-insert",l),l.element.innerHTML=l.highlightedCode,M.hooks.run("after-highlight",l),M.hooks.run("complete",l),t&&t.call(l.element)}if(M.hooks.run("before-sanity-check",l),(i=l.element.parentElement)&&"pre"===i.nodeName.toLowerCase()&&!i.hasAttribute("tabindex")&&i.setAttribute("tabindex","0"),!l.code)return M.hooks.run("complete",l),void(t&&t.call(l.element));if(M.hooks.run("before-highlight",l),l.grammar)if(n&&u.Worker){var s=new Worker(M.filename);s.onmessage=function(e){o(e.data)},s.postMessage(JSON.stringify({language:l.language,code:l.code,immediateClose:!0}))}else o(M.highlight(l.code,l.grammar,l.language));else o(M.util.encode(l.code))},highlight:function(e,n,t){var r={code:e,grammar:n,language:t};if(M.hooks.run("before-tokenize",r),!r.grammar)throw new Error('The language "'+r.language+'" has no grammar.');return r.tokens=M.tokenize(r.code,r.grammar),M.hooks.run("after-tokenize",r),W.stringify(M.util.encode(r.tokens),r.language)},tokenize:function(e,n){var t=n.rest;if(t){for(var r in t)n[r]=t[r];delete n.rest}var a=new i;return I(a,a.head,e),function e(n,t,r,a,i,l){for(var o in r)if(r.hasOwnProperty(o)&&r[o]){var s=r[o];s=Array.isArray(s)?s:[s];for(var u=0;u<s.length;++u){if(l&&l.cause==o+","+u)return;var c=s[u],g=c.inside,f=!!c.lookbehind,h=!!c.greedy,d=c.alias;if(h&&!c.pattern.global){var v=c.pattern.toString().match(/[imsuy]*$/)[0];c.pattern=RegExp(c.pattern.source,v+"g")}for(var p=c.pattern||c,m=a.next,y=i;m!==t.tail&&!(l&&y>=l.reach);y+=m.value.length,m=m.next){var k=m.value;if(t.length>n.length)return;if(!(k instanceof W)){var x,b=1;if(h){if(!(x=z(p,y,n,f))||x.index>=n.length)break;var w=x.index,A=x.index+x[0].length,E=y;for(E+=m.value.length;E<=w;)m=m.next,E+=m.value.length;if(E-=m.value.length,y=E,m.value instanceof W)continue;for(var P=m;P!==t.tail&&(E<A||"string"==typeof P.value);P=P.next)b++,E+=P.value.length;b--,k=n.slice(y,E),x.index-=y}else if(!(x=z(p,0,k,f)))continue;var w=x.index,L=x[0],S=k.slice(0,w),O=k.slice(w+L.length),j=y+k.length;l&&j>l.reach&&(l.reach=j);var C=m.prev;S&&(C=I(t,C,S),y+=S.length),T(t,C,b);var N=new W(o,g?M.tokenize(L,g):L,d,L);if(m=I(t,C,N),O&&I(t,m,O),1<b){var _={cause:o+","+u,reach:j};e(n,t,r,m.prev,y,_),l&&_.reach>l.reach&&(l.reach=_.reach)}}}}}}(e,a,n,a.head,0),function(e){var n=[],t=e.head.next;for(;t!==e.tail;)n.push(t.value),t=t.next;return n}(a)},hooks:{all:{},add:function(e,n){var t=M.hooks.all;t[e]=t[e]||[],t[e].push(n)},run:function(e,n){var t=M.hooks.all[e];if(t&&t.length)for(var r,a=0;r=t[a++];)r(n)}},Token:W};function W(e,n,t,r){this.type=e,this.content=n,this.alias=t,this.length=0|(r||"").length}function z(e,n,t,r){e.lastIndex=n;var a=e.exec(t);if(a&&r&&a[1]){var i=a[1].length;a.index+=i,a[0]=a[0].slice(i)}return a}function i(){var e={value:null,prev:null,next:null},n={value:null,prev:e,next:null};e.next=n,this.head=e,this.tail=n,this.length=0}function I(e,n,t){var r=n.next,a={value:t,prev:n,next:r};return n.next=a,r.prev=a,e.length++,a}function T(e,n,t){for(var r=n.next,a=0;a<t&&r!==e.tail;a++)r=r.next;(n.next=r).prev=n,e.length-=a}if(u.Prism=M,W.stringify=function n(e,t){if("string"==typeof e)return e;if(Array.isArray(e)){var r="";return e.forEach(function(e){r+=n(e,t)}),r}var a={type:e.type,content:n(e.content,t),tag:"span",classes:["token",e.type],attributes:{},language:t},i=e.alias;i&&(Array.isArray(i)?Array.prototype.push.apply(a.classes,i):a.classes.push(i)),M.hooks.run("wrap",a);var l="";for(var o in a.attributes)l+=" "+o+'="'+(a.attributes[o]||"").replace(/"/g,""")+'"';return"<"+a.tag+' class="'+a.classes.join(" ")+'"'+l+">"+a.content+"</"+a.tag+">"},!u.document)return u.addEventListener&&(M.disableWorkerMessageHandler||u.addEventListener("message",function(e){var n=JSON.parse(e.data),t=n.language,r=n.code,a=n.immediateClose;u.postMessage(M.highlight(r,M.languages[t],t)),a&&u.close()},!1)),M;var r=M.util.currentScript();function a(){M.manual||M.highlightAll()}if(r&&(M.filename=r.src,r.hasAttribute("data-manual")&&(M.manual=!0)),!M.manual){var l=document.readyState;"loading"===l||"interactive"===l&&r&&r.defer?document.addEventListener("DOMContentLoaded",a):window.requestAnimationFrame?window.requestAnimationFrame(a):window.setTimeout(a,16)}return M}(_self);"undefined"!=typeof module&&module.exports&&(module.exports=Prism),"undefined"!=typeof global&&(global.Prism=Prism); | |
Prism.languages.markup={comment:{pattern:/<!--(?:(?!<!--)[\s\S])*?-->/,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^<!|>$|[[\]]/,"doctype-tag":/^DOCTYPE/i,name:/[^\s<>'"]+/}},cdata:{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,greedy:!0},tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},Prism.languages.markup.tag.inside["attr-value"].inside.entity=Prism.languages.markup.entity,Prism.languages.markup.doctype.inside["internal-subset"].inside=Prism.languages.markup,Prism.hooks.add("wrap",function(a){"entity"===a.type&&(a.attributes.title=a.content.replace(/&/,"&"))}),Object.defineProperty(Prism.languages.markup.tag,"addInlined",{value:function(a,e){var s={};s["language-"+e]={pattern:/(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,lookbehind:!0,inside:Prism.languages[e]},s.cdata=/^<!\[CDATA\[|\]\]>$/i;var t={"included-cdata":{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,inside:s}};t["language-"+e]={pattern:/[\s\S]+/,inside:Prism.languages[e]};var n={};n[a]={pattern:RegExp("(<__[^>]*>)(?:<!\\[CDATA\\[(?:[^\\]]|\\](?!\\]>))*\\]\\]>|(?!<!\\[CDATA\\[)[^])*?(?=</__>)".replace(/__/g,function(){return a}),"i"),lookbehind:!0,greedy:!0,inside:t},Prism.languages.insertBefore("markup","cdata",n)}}),Object.defineProperty(Prism.languages.markup.tag,"addAttribute",{value:function(a,e){Prism.languages.markup.tag.inside["special-attr"].push({pattern:RegExp("(^|[\"'\\s])(?:"+a+")\\s*=\\s*(?:\"[^\"]*\"|'[^']*'|[^\\s'\">=]+(?=[\\s>]))","i"),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[e,"language-"+e],inside:Prism.languages[e]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})}}),Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup,Prism.languages.xml=Prism.languages.extend("markup",{}),Prism.languages.ssml=Prism.languages.xml,Prism.languages.atom=Prism.languages.xml,Prism.languages.rss=Prism.languages.xml; | |
!function(s){var e=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;s.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-](?:[^;{\s]|\s+(?![\s{]))*(?:;|(?=\s*\{))/,inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+e.source+"|(?:[^\\\\\r\n()\"']|\\\\[^])*)\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+e.source+"$"),alias:"url"}}},selector:{pattern:RegExp("(^|[{}\\s])[^{}\\s](?:[^{};\"'\\s]|\\s+(?![\\s{])|"+e.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:e,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},s.languages.css.atrule.inside.rest=s.languages.css;var t=s.languages.markup;t&&(t.tag.addInlined("style","css"),t.tag.addAttribute("style","css"))}(Prism); | |
Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,boolean:/\b(?:false|true)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/}; | |
Prism.languages.javascript=Prism.languages.extend("clike",{"class-name":[Prism.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,lookbehind:!0}],keyword:[{pattern:/((?:^|\})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:{pattern:RegExp("(^|[^\\w$])(?:NaN|Infinity|0[bB][01]+(?:_[01]+)*n?|0[oO][0-7]+(?:_[0-7]+)*n?|0[xX][\\dA-Fa-f]+(?:_[\\dA-Fa-f]+)*n?|\\d+(?:_\\d+)*n|(?:\\d+(?:_\\d+)*(?:\\.(?:\\d+(?:_\\d+)*)?)?|\\.\\d+(?:_\\d+)*)(?:[Ee][+-]?\\d+(?:_\\d+)*)?)(?![\\w$])"),lookbehind:!0},operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),Prism.languages.javascript["class-name"][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:Prism.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:Prism.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),Prism.languages.insertBefore("javascript","string",{hashbang:{pattern:/^#!.*/,greedy:!0,alias:"comment"},"template-string":{pattern:/`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}},"string-property":{pattern:/((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,lookbehind:!0,greedy:!0,alias:"property"}}),Prism.languages.insertBefore("javascript","operator",{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:"property"}}),Prism.languages.markup&&(Prism.languages.markup.tag.addInlined("script","javascript"),Prism.languages.markup.tag.addAttribute("on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)","javascript")),Prism.languages.js=Prism.languages.javascript; | |
!function(){if("undefined"!=typeof Prism&&"undefined"!=typeof document){var o="line-numbers",a=/\n(?!$)/g,e=Prism.plugins.lineNumbers={getLine:function(e,n){if("PRE"===e.tagName&&e.classList.contains(o)){var t=e.querySelector(".line-numbers-rows");if(t){var i=parseInt(e.getAttribute("data-start"),10)||1,r=i+(t.children.length-1);n<i&&(n=i),r<n&&(n=r);var s=n-i;return t.children[s]}}},resize:function(e){u([e])},assumeViewportIndependence:!0},n=void 0;window.addEventListener("resize",function(){e.assumeViewportIndependence&&n===window.innerWidth||(n=window.innerWidth,u(Array.prototype.slice.call(document.querySelectorAll("pre."+o))))}),Prism.hooks.add("complete",function(e){if(e.code){var n=e.element,t=n.parentNode;if(t&&/pre/i.test(t.nodeName)&&!n.querySelector(".line-numbers-rows")&&Prism.util.isActive(n,o)){n.classList.remove(o),t.classList.add(o);var i,r=e.code.match(a),s=r?r.length+1:1,l=new Array(s+1).join("<span></span>");(i=document.createElement("span")).setAttribute("aria-hidden","true"),i.className="line-numbers-rows",i.innerHTML=l,t.hasAttribute("data-start")&&(t.style.counterReset="linenumber "+(parseInt(t.getAttribute("data-start"),10)-1)),e.element.appendChild(i),u([t]),Prism.hooks.run("line-numbers",e)}}}),Prism.hooks.add("line-numbers",function(e){e.plugins=e.plugins||{},e.plugins.lineNumbers=!0})}function u(e){if(0!=(e=e.filter(function(e){var n=function(e){return e?window.getComputedStyle?getComputedStyle(e):e.currentStyle||null:null}(e)["white-space"];return"pre-wrap"===n||"pre-line"===n})).length){var n=e.map(function(e){var n=e.querySelector("code"),t=e.querySelector(".line-numbers-rows");if(n&&t){var i=e.querySelector(".line-numbers-sizer"),r=n.textContent.split(a);i||((i=document.createElement("span")).className="line-numbers-sizer",n.appendChild(i)),i.innerHTML="0",i.style.display="block";var s=i.getBoundingClientRect().height;return i.innerHTML="",{element:e,lines:r,lineHeights:[],oneLinerHeight:s,sizer:i}}}).filter(Boolean);n.forEach(function(e){var i=e.sizer,n=e.lines,r=e.lineHeights,s=e.oneLinerHeight;r[n.length-1]=void 0,n.forEach(function(e,n){if(e&&1<e.length){var t=i.appendChild(document.createElement("span"));t.style.display="block",t.textContent=e}else r[n]=s})}),n.forEach(function(e){for(var n=e.sizer,t=e.lineHeights,i=0,r=0;r<t.length;r++)void 0===t[r]&&(t[r]=n.children[i++].getBoundingClientRect().height)}),n.forEach(function(e){var n=e.sizer,t=e.element.querySelector(".line-numbers-rows");n.style.display="none",n.innerHTML="",e.lineHeights.forEach(function(e,n){t.children[n].style.height=e+"px"})})}}}(); | |
!function(){if("undefined"!=typeof Prism&&"undefined"!=typeof document){var i=[],l={},d=function(){};Prism.plugins.toolbar={};var e=Prism.plugins.toolbar.registerButton=function(e,n){var t;t="function"==typeof n?n:function(e){var t;return"function"==typeof n.onClick?((t=document.createElement("button")).type="button",t.addEventListener("click",function(){n.onClick.call(this,e)})):"string"==typeof n.url?(t=document.createElement("a")).href=n.url:t=document.createElement("span"),n.className&&t.classList.add(n.className),t.textContent=n.text,t},e in l?console.warn('There is a button with the key "'+e+'" registered already.'):i.push(l[e]=t)},t=Prism.plugins.toolbar.hook=function(a){var e=a.element.parentNode;if(e&&/pre/i.test(e.nodeName)&&!e.parentNode.classList.contains("code-toolbar")){var t=document.createElement("div");t.classList.add("code-toolbar"),e.parentNode.insertBefore(t,e),t.appendChild(e);var r=document.createElement("div");r.classList.add("toolbar");var n=i,o=function(e){for(;e;){var t=e.getAttribute("data-toolbar-order");if(null!=t)return(t=t.trim()).length?t.split(/\s*,\s*/g):[];e=e.parentElement}}(a.element);o&&(n=o.map(function(e){return l[e]||d})),n.forEach(function(e){var t=e(a);if(t){var n=document.createElement("div");n.classList.add("toolbar-item"),n.appendChild(t),r.appendChild(n)}}),t.appendChild(r)}};e("label",function(e){var t=e.element.parentNode;if(t&&/pre/i.test(t.nodeName)&&t.hasAttribute("data-label")){var n,a,r=t.getAttribute("data-label");try{a=document.querySelector("template#"+r)}catch(e){}return a?n=a.content:(t.hasAttribute("data-url")?(n=document.createElement("a")).href=t.getAttribute("data-url"):n=document.createElement("span"),n.textContent=r),n}}),Prism.hooks.add("complete",t)}}(); | |
!function(){if("undefined"!=typeof Prism&&"undefined"!=typeof document)if(Prism.plugins.toolbar){var i={none:"Plain text",plain:"Plain text",plaintext:"Plain text",text:"Plain text",txt:"Plain text",html:"HTML",xml:"XML",svg:"SVG",mathml:"MathML",ssml:"SSML",rss:"RSS",css:"CSS",clike:"C-like",js:"JavaScript",abap:"ABAP",abnf:"ABNF",al:"AL",antlr4:"ANTLR4",g4:"ANTLR4",apacheconf:"Apache Configuration",apl:"APL",aql:"AQL",ino:"Arduino",arff:"ARFF",asciidoc:"AsciiDoc",adoc:"AsciiDoc",aspnet:"ASP.NET (C#)",asm6502:"6502 Assembly",asmatmel:"Atmel AVR Assembly",autohotkey:"AutoHotkey",autoit:"AutoIt",avisynth:"AviSynth",avs:"AviSynth","avro-idl":"Avro IDL",avdl:"Avro IDL",awk:"AWK",gawk:"GAWK",basic:"BASIC",bbcode:"BBcode",bnf:"BNF",rbnf:"RBNF",bsl:"BSL (1C:Enterprise)",oscript:"OneScript",csharp:"C#",cs:"C#",dotnet:"C#",cpp:"C++",cfscript:"CFScript",cfc:"CFScript",cil:"CIL",cmake:"CMake",cobol:"COBOL",coffee:"CoffeeScript",conc:"Concurnas",csp:"Content-Security-Policy","css-extras":"CSS Extras",csv:"CSV",dataweave:"DataWeave",dax:"DAX",django:"Django/Jinja2",jinja2:"Django/Jinja2","dns-zone-file":"DNS zone file","dns-zone":"DNS zone file",dockerfile:"Docker",dot:"DOT (Graphviz)",gv:"DOT (Graphviz)",ebnf:"EBNF",editorconfig:"EditorConfig",ejs:"EJS",etlua:"Embedded Lua templating",erb:"ERB","excel-formula":"Excel Formula",xlsx:"Excel Formula",xls:"Excel Formula",fsharp:"F#","firestore-security-rules":"Firestore security rules",ftl:"FreeMarker Template Language",gml:"GameMaker Language",gamemakerlanguage:"GameMaker Language",gap:"GAP (CAS)",gcode:"G-code",gdscript:"GDScript",gedcom:"GEDCOM",glsl:"GLSL",gn:"GN",gni:"GN","go-module":"Go module","go-mod":"Go module",graphql:"GraphQL",hbs:"Handlebars",hs:"Haskell",hcl:"HCL",hlsl:"HLSL",http:"HTTP",hpkp:"HTTP Public-Key-Pins",hsts:"HTTP Strict-Transport-Security",ichigojam:"IchigoJam","icu-message-format":"ICU Message Format",idr:"Idris",ignore:".ignore",gitignore:".gitignore",hgignore:".hgignore",npmignore:".npmignore",inform7:"Inform 7",javadoc:"JavaDoc",javadoclike:"JavaDoc-like",javastacktrace:"Java stack trace",jq:"JQ",jsdoc:"JSDoc","js-extras":"JS Extras",json:"JSON",webmanifest:"Web App Manifest",json5:"JSON5",jsonp:"JSONP",jsstacktrace:"JS stack trace","js-templates":"JS Templates",keepalived:"Keepalived Configure",kts:"Kotlin Script",kt:"Kotlin",kumir:"KuMir (КуМир)",kum:"KuMir (КуМир)",latex:"LaTeX",tex:"TeX",context:"ConTeXt",lilypond:"LilyPond",ly:"LilyPond",emacs:"Lisp",elisp:"Lisp","emacs-lisp":"Lisp",llvm:"LLVM IR",log:"Log file",lolcode:"LOLCODE",magma:"Magma (CAS)",md:"Markdown","markup-templating":"Markup templating",matlab:"MATLAB",maxscript:"MAXScript",mel:"MEL",mongodb:"MongoDB",moon:"MoonScript",n1ql:"N1QL",n4js:"N4JS",n4jsd:"N4JS","nand2tetris-hdl":"Nand To Tetris HDL",naniscript:"Naninovel Script",nani:"Naninovel Script",nasm:"NASM",neon:"NEON",nginx:"nginx",nsis:"NSIS",objectivec:"Objective-C",objc:"Objective-C",ocaml:"OCaml",opencl:"OpenCL",openqasm:"OpenQasm",qasm:"OpenQasm",parigp:"PARI/GP",objectpascal:"Object Pascal",psl:"PATROL Scripting Language",pcaxis:"PC-Axis",px:"PC-Axis",peoplecode:"PeopleCode",pcode:"PeopleCode",php:"PHP",phpdoc:"PHPDoc","php-extras":"PHP Extras",plsql:"PL/SQL",powerquery:"PowerQuery",pq:"PowerQuery",mscript:"PowerQuery",powershell:"PowerShell",promql:"PromQL",properties:".properties",protobuf:"Protocol Buffers",purebasic:"PureBasic",pbfasm:"PureBasic",purs:"PureScript",py:"Python",qsharp:"Q#",qs:"Q#",q:"Q (kdb+ database)",qml:"QML",rkt:"Racket",cshtml:"Razor C#",razor:"Razor C#",jsx:"React JSX",tsx:"React TSX",renpy:"Ren'py",rpy:"Ren'py",rest:"reST (reStructuredText)",robotframework:"Robot Framework",robot:"Robot Framework",rb:"Ruby",sas:"SAS",sass:"Sass (Sass)",scss:"Sass (Scss)","shell-session":"Shell session","sh-session":"Shell session",shellsession:"Shell session",sml:"SML",smlnj:"SML/NJ",solidity:"Solidity (Ethereum)",sol:"Solidity (Ethereum)","solution-file":"Solution file",sln:"Solution file",soy:"Soy (Closure Template)",sparql:"SPARQL",rq:"SPARQL","splunk-spl":"Splunk SPL",sqf:"SQF: Status Quo Function (Arma 3)",sql:"SQL",iecst:"Structured Text (IEC 61131-3)",systemd:"Systemd configuration file","t4-templating":"T4 templating","t4-cs":"T4 Text Templates (C#)",t4:"T4 Text Templates (C#)","t4-vb":"T4 Text Templates (VB)",tap:"TAP",tt2:"Template Toolkit 2",toml:"TOML",trickle:"trickle",troy:"troy",trig:"TriG",ts:"TypeScript",tsconfig:"TSConfig",uscript:"UnrealScript",uc:"UnrealScript",uorazor:"UO Razor Script",uri:"URI",url:"URL",vbnet:"VB.Net",vhdl:"VHDL",vim:"vim","visual-basic":"Visual Basic",vba:"VBA",vb:"Visual Basic",wasm:"WebAssembly","web-idl":"Web IDL",webidl:"Web IDL",wiki:"Wiki markup",wolfram:"Wolfram language",nb:"Mathematica Notebook",wl:"Wolfram language",xeoracube:"XeoraCube","xml-doc":"XML doc (.net)",xojo:"Xojo (REALbasic)",xquery:"XQuery",yaml:"YAML",yml:"YAML",yang:"YANG"};Prism.plugins.toolbar.registerButton("show-language",function(e){var a=e.element.parentNode;if(a&&/pre/i.test(a.nodeName)){var t,o=a.getAttribute("data-language")||i[e.language]||((t=e.language)?(t.substring(0,1).toUpperCase()+t.substring(1)).replace(/s(?=cript)/,"S"):t);if(o){var s=document.createElement("span");return s.textContent=o,s}}})}else console.warn("Show Languages plugin loaded before Toolbar plugin.")}(); | |
!function(){if("undefined"!=typeof Prism){var i=Object.assign||function(e,n){for(var t in n)n.hasOwnProperty(t)&&(e[t]=n[t]);return e};e.prototype={setDefaults:function(e){this.defaults=i(this.defaults,e)},normalize:function(e,n){for(var t in n=i(this.defaults,n)){var r=t.replace(/-(\w)/g,function(e,n){return n.toUpperCase()});"normalize"!==t&&"setDefaults"!==r&&n[t]&&this[r]&&(e=this[r].call(this,e,n[t]))}return e},leftTrim:function(e){return e.replace(/^\s+/,"")},rightTrim:function(e){return e.replace(/\s+$/,"")},tabsToSpaces:function(e,n){return n=0|n||4,e.replace(/\t/g,new Array(++n).join(" "))},spacesToTabs:function(e,n){return n=0|n||4,e.replace(RegExp(" {"+n+"}","g"),"\t")},removeTrailing:function(e){return e.replace(/\s*?$/gm,"")},removeInitialLineFeed:function(e){return e.replace(/^(?:\r?\n|\r)/,"")},removeIndent:function(e){var n=e.match(/^[^\S\n\r]*(?=\S)/gm);return n&&n[0].length?(n.sort(function(e,n){return e.length-n.length}),n[0].length?e.replace(RegExp("^"+n[0],"gm"),""):e):e},indent:function(e,n){return e.replace(/^[^\S\n\r]*(?=\S)/gm,new Array(++n).join("\t")+"$&")},breakLines:function(e,n){n=!0===n?80:0|n||80;for(var t=e.split("\n"),r=0;r<t.length;++r)if(!(s(t[r])<=n)){for(var i=t[r].split(/(\s+)/g),o=0,a=0;a<i.length;++a){var l=s(i[a]);n<(o+=l)&&(i[a]="\n"+i[a],o=l)}t[r]=i.join("")}return t.join("\n")}},"undefined"!=typeof module&&module.exports&&(module.exports=e),Prism.plugins.NormalizeWhitespace=new e({"remove-trailing":!0,"remove-indent":!0,"left-trim":!0,"right-trim":!0}),Prism.hooks.add("before-sanity-check",function(e){var n=Prism.plugins.NormalizeWhitespace;if((!e.settings||!1!==e.settings["whitespace-normalization"])&&Prism.util.isActive(e.element,"whitespace-normalization",!0))if(e.element&&e.element.parentNode||!e.code){var t=e.element.parentNode;if(e.code&&t&&"pre"===t.nodeName.toLowerCase()){for(var r=t.childNodes,i="",o="",a=!1,l=0;l<r.length;++l){var s=r[l];s==e.element?a=!0:"#text"===s.nodeName&&(a?o+=s.nodeValue:i+=s.nodeValue,t.removeChild(s),--l)}if(e.element.children.length&&Prism.plugins.KeepMarkup){var c=i+e.element.innerHTML+o;e.element.innerHTML=n.normalize(c,e.settings),e.code=e.element.textContent}else e.code=i+e.code+o,e.code=n.normalize(e.code,e.settings)}}else e.code=n.normalize(e.code,e.settings)})}function e(e){this.defaults=i({},e)}function s(e){for(var n=0,t=0;t<e.length;++t)e.charCodeAt(t)=="\t".charCodeAt(0)&&(n+=3);return e.length+n}}(); | |
!function(){function u(t,e){t.addEventListener("click",function(){!function(t){navigator.clipboard?navigator.clipboard.writeText(t.getText()).then(t.success,function(){o(t)}):o(t)}(e)})}function o(e){var t=document.createElement("textarea");t.value=e.getText(),t.style.top="0",t.style.left="0",t.style.position="fixed",document.body.appendChild(t),t.focus(),t.select();try{var o=document.execCommand("copy");setTimeout(function(){o?e.success():e.error()},1)}catch(t){setTimeout(function(){e.error(t)},1)}document.body.removeChild(t)}"undefined"!=typeof Prism&&"undefined"!=typeof document&&(Prism.plugins.toolbar?Prism.plugins.toolbar.registerButton("copy-to-clipboard",function(t){var e=t.element,o=function(t){var e={copy:"Copy","copy-error":"Press Ctrl+C to copy","copy-success":"Copied!","copy-timeout":5e3};for(var o in e){for(var n="data-prismjs-"+o,c=t;c&&!c.hasAttribute(n);)c=c.parentElement;c&&(e[o]=c.getAttribute(n))}return e}(e),n=document.createElement("button");n.className="copy-to-clipboard-button",n.setAttribute("type","button");var c=document.createElement("span");return n.appendChild(c),i("copy"),u(n,{getText:function(){return e.textContent},success:function(){i("copy-success"),r()},error:function(){i("copy-error"),setTimeout(function(){!function(t){window.getSelection().selectAllChildren(t)}(e)},1),r()}}),n;function r(){setTimeout(function(){i("copy")},o["copy-timeout"])}function i(t){c.textContent=o[t],n.setAttribute("data-copy-state",t)}}):console.warn("Copy to Clipboard plugin loaded before Toolbar plugin."))}(); | |
function myFunction() { | |
var winScroll = document.body.scrollTop || document.documentElement.scrollTop; | |
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight; | |
var scrolled = (winScroll / height) * 100; | |
document.getElementById("myBar").style.width = scrolled + "%"; | |
} | |
</script> | |
</head> | |
<body> | |
<div class="header"> | |
<div class="progress-container"> | |
<div class="progress-bar" id="myBar"></div> | |
</div> | |
</div> | |
<h1 id="mainhead">My JS Notes</h1> | |
<div class="notescontainer"> | |
<h3 class="s">Defining a Variable</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var a = 3; | |
var b = 5; | |
// Or we can write in same line also | |
var a = 3, b = 5; | |
</code> | |
</pre> | |
<h3 class="s">Assingment Operator</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
5 + 3 // Returns 8 | |
5 - 3 // Return 2 | |
5 * 3 // Returns 15 | |
5 / 3 // Returns 1.6 | |
5 ** 3 // Returns same as 5^3 or, 5 * 5 * 5 = 125 | |
5 % 3 // Returns the remainder value when 5 is divided by 3 remainder is 2 return 2 | |
</code> | |
</pre> | |
<h3 class="s">Printing in Console</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
console.log("Hello World"); // Writes Hello World in console | |
</code> | |
</pre> | |
<h3 class="s">Type of command</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var age = 35, name = "Rohan"; | |
console.log(typeof(age)); // Returns number | |
console.log(typeof(name)); // Returns String | |
</code> | |
</pre> | |
<h3 class="s">Function Syntax</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
function nameoffunction(parameters){ | |
//Statments | |
} | |
</code> | |
</pre> | |
<h3 class="s">Function to Generate Sum of any two numbers via console</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
function sum(a,b){ | |
console.log(a + b); | |
} | |
</code> | |
</pre> | |
<h3 class="s">Function to Generate sum of any two numbers via alert</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
function sum(){ | |
var a = parseInt(prompt("Enter the first number")); | |
var b = parseInt(prompt("Enter the second number")); | |
var c = a + b; | |
window.alert(c); | |
} | |
</code> | |
</pre> | |
<h3 class="s">While loop syntax</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
while (condition) { | |
// code | |
// so-called "loop body" | |
} | |
</code> | |
</pre> | |
<h3 class="s">Counting 1 to 10</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var num = 1; | |
while (num <= 10){ | |
console.log(num); | |
num++; | |
} | |
</code> | |
</pre> | |
<h3 class="s">Function to generate table via Console</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
function getTable(no){ | |
var multiplier = 0; | |
while (multiplier < 10){ | |
multiplier++; | |
console.log(no + "*" + multiplier + "=" + no * multiplier); | |
} | |
} | |
</code> | |
</pre> | |
<h3 class="s">Function to generate Table via Alert</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
function getTable(){ | |
var no = parseInt(prompt("Enter the number to get table")); | |
var multiplier = 0; | |
while (multiplier < 10){ | |
multiplier++; | |
window.alert(no + "*" + multiplier + "=" + no * multiplier); | |
} | |
} | |
</code> | |
</pre> | |
<h3 class="s">Anonymous function</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
function sum(a,b){ | |
return a + b; | |
} //Named function | |
var sum = function(a,b){ | |
return a + b; | |
} // Anonymous Function | |
</code> | |
</pre> | |
<h3 class="s"> | |
Function to check whether a year is a leap year or not via Alert | |
</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
function isleap(){ | |
var year = parseInt(prompt('Enter the year to check it is a leap year')); | |
var $1check = year % 4; //Check if it is divisible by 4 | |
if($1check == 0){ | |
var $2check = year % 100; //Check if it is divisible by 100 | |
if($2check == 0){ | |
var $3check = year % 400; //Check if it is divisible by 400 | |
if($3check == 0){ | |
window.alert('It is a leap year'); | |
} | |
else{ | |
window.alert('Not a leap year'); | |
} | |
} | |
else{ | |
window.alert('It is a leap year'); | |
} | |
} | |
else{ | |
window.alert('Not a leap year'); | |
} | |
} | |
</code> | |
</pre> | |
<h3 class="s"> | |
Function to see whether the number is odd or even via Alert | |
</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
function oddoreven(){ | |
var number = parseInt(prompt("Enter the number to check")); | |
if(number == 0){ | |
window.alert("0 is neither even nor odd") | |
} | |
else{ | |
var check = number % 2; | |
if(check == 0){ | |
window.alert("It is even"); | |
} | |
else{ | |
window.alert("It is odd"); | |
} | |
} | |
} | |
</code> | |
</pre> | |
<h3 class="s"> | |
Function to see whether the user is 18+ or not | |
</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
function isadult(){ | |
var age = parseInt(prompt("Enter the number to check")); | |
if(age < 18){ | |
window.alert("You are under 18"); | |
} | |
else{ | |
window.alert("You are above 18"); | |
} | |
</code> | |
</pre> | |
<h3 class="s">Template literals</h3> | |
<h5 class="s"> | |
The allow you to write an js sentence in a much easier way without using | |
"+" key. | |
</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var name = "Rohan", age = 14; | |
console.log("My name is " + name + " and my age is " + age); //long form | |
var name = "Rohan", age = 14; | |
console.log(`My name is ${name} and my age is ${age}`); //Short form | |
</code> | |
</pre> | |
<h3 class="s">Arrays</h3> | |
<h5 class="s"> | |
Arrays allow you to write multiple values in the same variables. | |
</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var myFriends = ["Ramesh", "Suresh", "Mukesh"] | |
</code> | |
</pre> | |
<h3 class="s">Arrays Length Property</h3> | |
<h5 class="s"> | |
Helps to know the number of data in an array | |
</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var myFriends = ["Ramesh", "Suresh", "Mukesh"]; | |
console.log(myFriends.length); | |
</code> | |
</pre> | |
<h3 class="s">How to get the last element of an array</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var myFriends = ["Ramesh", "Suresh", "Mukesh"]; | |
console.log(myFriends[myFriends.length - 1]); // Returns Mukesh | |
</code> | |
</pre> | |
<h3 class="s">For in loop</h3> | |
<h5 class="s">Provides index no. of an array</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var myFriends = ["Ramesh", "Suresh", "Mukesh"]; | |
for (let elements in myFriends){ | |
console.log(elements); | |
} //Return 0,1,2 | |
</code> | |
</pre> | |
<h3 class="s">For of loop</h3> | |
<h5 class="s">Provides data of an array</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var myFriends = ["Ramesh", "Suresh", "Mukesh"]; | |
for (let elements of myFriends){ | |
console.log(elements); | |
} //Returns Ramesh, Suresh and Mukesh | |
</code> | |
</pre> | |
<h3 class="s">For each loop</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var myFriends = ["Ramesh", "Suresh", "Mukesh"]; | |
myFriends.forEach(function(element, index, array){ | |
console.log(`${element} index : ${index}`); | |
}); | |
</code> | |
</pre> | |
<h2 class="s"> | |
Searching and filtering in an array | |
</h2> | |
<h3 class="s"> | |
IndexOf() | |
</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var myFriends = ["Ramesh", "Suresh", "Mukesh", "Suresh"]; | |
console.log(myFriends.IndexOf('Suresh')); //Returns 1 | |
</code> | |
</pre> | |
<h3 class="s"> | |
LastIndexOf() | |
</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var myFriends = ["Ramesh", "Suresh", "Mukesh", "Suresh"]; | |
console.log(myFriends.lastIndexOf('Suresh')); //Returns 3 | |
</code> | |
</pre> | |
<h3 class="s"> | |
Includes() | |
</h3> | |
<h5 class="s">Returns boolean value</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
var myFriends = ["Ramesh", "Suresh", "Mukesh", "Suresh"]; | |
console.log(myFriends.includes('Mukesh')); //Returns true | |
</code> | |
</pre> | |
<h3 class="s"> | |
Find() | |
</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const prices = [20000,145000,2004,023,4043,34505]; | |
const findElem = prices.find((newprice) => newprice < 20000); | |
console.log(findElem); | |
</code> | |
</pre> | |
<h3 class="s"> | |
FindIndex() | |
</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const prices = [20000,145000,2004,023,4043,34505]; | |
const findElem = prices.findIndex((newprice) => newprice < 20000); | |
console.log(findElem); | |
</code> | |
</pre> | |
<h3 class="s"> | |
Filter() | |
</h3> | |
<h5 class="s">Return the new array which satifies the given condition</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const prices = [20000,145000,2004,023,4043,34505]; | |
const filtered = prices.filter((element, index) => { | |
return element > 20000; | |
}) | |
console.log(filtered); | |
</code> | |
</pre> | |
<h3 class="s"> | |
Sort() | |
</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const fruits = ["apples","banana","guava","mangoes","pear"]; | |
console.log(fruits.sort()); //In text | |
const prices = [20000,145000,2004,023,4043,34505]; | |
console.log(prices.sort()); | |
</code> | |
</pre> | |
<h1 class="s"> | |
CRUD (Create Read Update Delete) | |
</h1> | |
<h3 class="s"> | |
Push() | |
</h3> | |
<h5 class="s"> | |
The push method adds one or more array to the end of the array and return the new length of the array | |
</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const vegetable = ["Tomato","Potato","Cauliflower"]; | |
const count = vegetable.push("Brinjal","Cucumber"); | |
console.log(count); | |
console.log(vegetable); | |
</code> | |
</pre> | |
<h3 class="s"> | |
Unshift() | |
</h3> | |
<h5 class="s"> | |
The unshift method adds one or more array to the start of the array and return the new length of the array | |
</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const vegetable = ["Tomato","Potato","Cauliflower"]; | |
const count = vegetable.unshift("Brinjal","Cucumber"); | |
console.log(count); | |
console.log(vegetable); | |
</code> | |
</pre> | |
<h3 class="s"> | |
Pop() | |
</h3> | |
<h5 class="s"> | |
The pop method removes the last element from an array and return that element. This method changes the length of an array. | |
</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const vegetable = ["Tomato","Potato","Cauliflower","Brinjal","Cucumber"]; | |
const count = vegetable.pop(); | |
console.log(count); | |
console.log(vegetable); | |
</code> | |
</pre> | |
<h3 class="s"> | |
Shift() | |
</h3> | |
<h5 class="s"> | |
The pop shift removes the first element from an array and return that element. This method changes the length of an array. | |
</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const vegetable = ["Tomato","Potato","Cauliflower","Brinjal","Cucumber"]; | |
const count = vegetable.shift(); | |
console.log(count); | |
console.log(vegetable); | |
</code> | |
</pre> | |
<h3 class="s"> | |
Splice () #VVI | |
</h3> | |
<h5 class="s"> | |
Adds or/and removes the element from an array | |
</h5> | |
<h4 class="s">Syntax</h4> | |
<h5 class="s"> | |
Starting no. is a part where the process should be conducted, delete count delete numbers ( 0 or 1) and third parameter is to add the numbers into an array | |
</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const vegetable = ["Tomato","Potato","Cauliflower","Brinjal","Cucumber"]; | |
const count = vegetable.splice(Starting no., Delteting no.,Array to be inserted); | |
console.log(count); | |
console.log(vegetable); | |
</code> | |
</pre> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const vegetable = ["Tomato","Potato","Cauliflower","Brinjal"]; | |
const count = vegetable.splice(4,0,"Cucumber"); | |
console.log(count); | |
console.log(vegetable); //Adding Elements | |
//Updating Elements | |
const vegetable = ["Tomato","Potato","Cauliflower","Brinjal"]; | |
const count = vegetable.splice(2,1,"cauliflower"); | |
console.log(count); | |
console.log(vegetable); //Changed Cauliflower to cauliflower | |
//Deleting Elements | |
const vegetable = ["Tomato","Potato","Cauliflower","Brinjal"]; | |
const count = vegetable.splice(2,1); | |
console.log(count); | |
console.log(vegetable); //Deleted Cauliflower | |
const vegetable = ["Tomato","Potato","Cauliflower","Brinjal"]; | |
const count = vegetable.splice(1,Infinity); | |
console.log(count); | |
console.log(vegetable); //Deleted Cauliflower | |
</code> | |
</pre> | |
<h3 class="s"> | |
Map() | |
</h3> | |
<h5 class="s"> | |
Return the new element containing the result of a calling function on every element in this array. Same as filter but filter return the value and it return the boolean value | |
</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
let number = [12,6,23,13,19,9,2,15]; | |
// number > 11 | |
let newArray = number.map((currentElem,index,arr) =>{ | |
return currentElem > 11; | |
}) | |
console.log(newArray) | |
</code> | |
</pre> | |
<h3 class="s"> | |
Reduce() | |
</h3> | |
<h5 class="s"> | |
Flattens an array means to convert a 2d or 3d array into a single dimensional array.<br> | |
The reduce method execute a reducer function (that you provide) on each element of the array, resulting in single output value.<br> | |
The reducer function take four arguments:<br> Accumulator <br> Current Value <br> Current Index <br> Source Index | |
</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
let arr = [5,6,2]; | |
let sum = arr.reduce((Accumulator,currentElem) => { | |
return Accumulator += currentElem; | |
}) | |
console.log(sum); | |
</code> | |
</pre> | |
<h1 class="s">String</h1> | |
<h3>Length()</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
let name = "Afnan Ahmad" | |
console.log(name.length) | |
</code> | |
</pre> | |
<h3 class="s">Escape Character</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
let txt = "We are so called \"Vikings\" from the north"; | |
console.log(txt) | |
</code> | |
</pre> | |
<h3 class="s">indexOf()</h3> | |
<h5 class="s">The index of method return the index of the first occurence of a specified text in the string.</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const txt = "I am Afnan Ahmad"; | |
console.log(txt.indexOf("Afnan")); | |
</code> | |
</pre> | |
<h3 class="s">Search()</h3> | |
<h5 class="s">The search method searches the string for a specified value and return the position of the match.</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const txt = "I am Afnan Ahmad"; | |
console.log(txt.search("Afnan")); | |
</code> | |
</pre> | |
<h3 class="s">Slice()</h3> | |
<h5 class="s">The slice method selects the element at a given starting point, but does not include the given en\d argument.<br>The original array will not be changed.</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const txt = "I am Afnan Ahmad"; | |
const sliced = txt.slice(5,10); | |
//or it can be | |
const sliced = txt.slice(5,-6) | |
</code> | |
</pre> | |
<h3 class="s">Substring()</h3> | |
<h5 class="s">Substring similar to splice. It does not accept negative value. If we write negative value then it count from 0 to starting point and slice the string.</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const txt = "I am Afnan Ahmad"; | |
var sliced = txt.substring(5,10); | |
//or it can be | |
var sliced = txt.substring(5,-6) //It will be same as (0,5) | |
</code> | |
</pre> | |
<h3 class="s">Replace()</h3> | |
<h5 class="s">This replaces this text in a string but only the first occurence of string.</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const txt = "I am Afnan Ahmad"; | |
const replaced = txt.replace("I","We"); | |
console.log(replaced); | |
</code> | |
</pre> | |
<h3 class="s">CharAt()</h3> | |
<h5 class="s">Help us know the character at a given position.</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const txt = "I am Afnan Ahmad"; | |
const char = txt.charAt(3); | |
console.log(char); //Expected output m | |
</code> | |
</pre> | |
<h3 class="s">charCodeAt()</h3> | |
<h5 class="s">Help us know the Unicode of a character at a given position.</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const txt = "I am Afnan Ahmad"; | |
const char = txt.charCodeAt(3); | |
console.log(char); | |
</code> | |
</pre> | |
<h3 class="s">toUpperCase() & toLowerCase</h3> | |
<h5 class="s">Converts a string into upper case or lowercase.</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
const txt = "I am Afnan Ahmad"; | |
const lower = txt.toLowerCase(); | |
const upper = txt.toUpperCase(); | |
console.log(lower,upper); | |
</code> | |
</pre> | |
<h3 class="s">concat()</h3> | |
<h5 class="s">Add two or more Strings</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
let FName = "Afnan"; | |
let LName = "Ahmad"; | |
console.log(FName.concat(LName)); //Expected Output:- AfnanAhmad | |
//With Spaces | |
console.log(FName.concat(" ",LName)); //Expected Output:- Afnan Ahmad | |
</code> | |
</pre> | |
<h3 class="s">trim()</h3> | |
<h5 class="s">The Trim method removes white spaces</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
let Name = " Afnan Ahmad " | |
console.log(Name); //before | |
console.log(Name.trim()); //after | |
</code> | |
</pre> | |
<h3 class="s">split()</h3> | |
<h5 class="s">The Split method creates a new array</h5> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
let Name = "Afnan Rakesh Rohan Sohan Monu Golu Tolu"; | |
let newName = console.log(Name.split(" ")); | |
console.log(typeof(Name)); | |
console.log(typeof(newName)); | |
</code> | |
</pre> | |
<h1 class="s">Date & Time in JavaScript</h1> | |
<h5 class="s">The Date Object contains a number in milliseconds since 1 January 1970 UTC.</h5> | |
<h3 class="s">new Date()</h3> | |
<pre class="line-numbers"> | |
<code class="language-js"> | |
let currDate = new Date(); | |
console.log(currDate); | |
</code> | |
</pre> | |
</div> | |
<div class="download"> | |
<button class="btn" onclick="download()">Download Notes</button> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment