Colored Markers                 CSS Color Markers       MyLink                                                                                                                Hello My Name IS SHivam     
Posts
Regex with .test() In JavaScript
- Get link
 - X
 - Other Apps
 
 REGEX is very interesting and helping  RegEx  It is an Acronym means Regular Expression The Work of Regex  Regular Expressions  (Regex) Regular Expression, or regex or regexp inshort, it is tremendously powerful in searching and manipulating text sub-strings of any String, particularly in processing text files. One line of regex can easily replace multiple lines of programming codes Regex work as to search and return true if the search regex gets found  like in any string we have to search any particular words if that word of clause exist in that given string or other datatypes then it the .test() function will return True This is the Alternative Code for Regex Expression and .test() var  str1 =  "Hello My Name Is Shivam Dixit" ; var  result = false ; var  search = "Shivam" ; function  regextest ( str1 , result , search ){ for  ( var  i = 0 ; i < str1 . length ; i ++ ){ if  ( str1 [ i ] === search [ 0 ]){ for ( var  j = 1 ; j < search . length ; j ++...
use promise keyword in js
- Get link
 - X
 - Other Apps
 
 Promise keyword in JavaScript A promise in JavaScript is exactly what it sounds like - you use it to make a promise to do something, usually asynchronously. When the task completes, you either fulfill your promise or fail to do so.  Promise  is a constructor function, so you need to use the  new  keyword to create one. It takes a function, as its argument, with two parameters -  resolve  and  reject . These are methods used to determine the outcome of the promise. The syntax looks like this:  const  myPromise =  new  Promise ( ( resolve ,  reject )  =>  {   } ) ;  Complete a Promise with resolve and reject A promise has three states:  pending ,  fulfilled , and  rejected . The promise you created in the last challenge is forever stuck in the  pending  state because you did not add a way to complete the promise. The  resolve  and  reject  parameters given to the promise argument are used to do this....
Export Keyword In JAVA SCRIPT (role and use)
- Get link
 - X
 - Other Apps
 
Export Keyword use and role image by DIX TECH : what is use and role of export and import keyword    if you are beginner in js then you are here don't worry it is very easy to you after time    export  keyword  here basic means of this keyword just to ensure what is it if you want to learn deep then click here  Use Of export Keyword     This is the code which written in an Module.js file      file name : module.js    //code starts    export  const  add = (x, y) => {    return  x + y;  }    //code ends   Now index.js is the file where we want to add two numbers x and y   This is a new file name index.js and here randomly we want to use that add function which we have previuosly defined in module.js file    to use that function we have to use import  keyword is work to import the add funtion from the given file     file name:index.js      // code starts       import  add from  ./module.js;    // now we can use the add() function in index.js  wheather it is written in module.js  na...
CT1 Exam QUESTION Paper 2022 BSACET 1st year B tech
- Get link
 - X
 - Other Apps
 
BSACET CT-1 Exam Question Paper 2022 B-tech 1st year Hello To all Bsacetians this is your Friends Shivam Dixit (2022 btech 1st yr) You can know More About me by Click Here  Chemistry B tech 1st year CT1 question paper 2022 If the photo is Not visible For PDF click here Engeenering Mathematics  1st Year BTech BSACET CT1 question paper if the picture is not in good pixel then click here  ECE (ELETRONIC AND COMUNNICATION ENGINEERING) BSACET 1st YEAR B TECH CT1 question paper If the picture is not visible the click here  SOFT SKILLS (ENGLISH )BSACET CT1 QUESTION PAPER 2022 If the picture is not visible the click here
THE COFFEE WORLD
- Get link
 - X
 - Other Apps
 
                                        COFFEE LOVERS                             I LOVE COFFEE                   COFFEE HISTORY          BUY COFFEE          SELL COFFEE          TOTAL TYPES OF COFFE          TEA VS COFFEE          SCOPE OF COFFEE                                                                                                 THE COFFEE LOVERS                   COFFEE SELL               COFFEE BUY               DOWNLOAD                 WEBSITE                  ABOUT US                 DIX TECH                         Dix Tech yt                                   Submit                    COFFEE              a hot drink made from the roasted and ground seeds (coffee beans)  of a tropical shrub          COFFEE LOVERS          I like coffee because it gives me the illusion that I might be awake.              Coffee is a drink prepared from roasted coffee beans. Darkly colored, bitter, and slightly acidic, coffee has a stimulating effect on humans, primarily due to its caff...