Posts

Showing posts from 2023

How To Convert Decimal Numbers To Binary Numbers In Javascript | letsbug.com

        Hi everyone in this article we going to make a function to convert decimal numbers to binary numbers.     So before that make sure you are know how to convert the decimal numbers to binary numbers on papers in traditional way. And over here we are just going to implement that logic into code.     And the language is javascript but the logic can be implemented in any language you want. And we are using node.js as javascript runtime. Decimal Numbers To Binary Numbers      code:  const toBinary = ( decimalNumber ) => {     if ( decimalNumber == 0 ) return "0"     let remainder = []     while ( decimalNumber > 1 ) {         remainder. push ( decimalNumber % 2 )         decimalNumber = Math. floor ( decimalNumber / 2 )     }     remainder. push ( 1 )     return remainder. reverse (). join ( "" ) } console. log ( toBinary ( 29 )) console. log ( toBinary ( 35 )) console. log ( toBinary ( 102 )) console. log ( toBinary ( 88 )) console. lo

How To Convert Binary Numbers To Decimal In Javascript | letsbug.com

      Hi everyone in this article we going to make a function to convert binary numbers into decimal numbers.     So before that make sure you are know how to convert the binary numbers to decimal on papers in traditional way. And over here we are just going to implement that logic into code.      And the language is javascript but the logic can be implemented in any language you want. And we are using node.js as javascript runtime. Binary to Decimal In Javascript     code:  const toDecimal = ( binaryNumber ) => {     const digits = String ( binaryNumber ). split ( "" ). reverse ()     let sum = 0     let counter = 1     digits. forEach ( e => {         if ( Number ( e ) !== 0 ) sum = sum + counter         counter = counter * 2     })     return sum } console. log ( toDecimal ( 0 )) console. log ( toDecimal ( 10 )) console. log ( toDecimal ( 11010 )) console. log ( toDecimal ( 1001 )) console. log ( toDecimal ( 101 ))     output:  $ node index.js 0 2 2

Is There A Route Between Two Nodes Graph Problem | letsbug

      Find Route Between Two Nodes Graph Problem       Hi everyone in this article we are going to see how to solve the problem of finding route between two nodes of a graph.      Before we start let's make sure that you know a little bit about graphs data structure and how to traverse through a graph.  code:  const testG = {     'A' : [ 'B' , 'C' ],     'B' : [ 'D' , 'F' , 'E' ],     'C' : [ 'F' ],     'D' : [],     'E' : [ 'F' ],     'F' : [],     'G' : [] } const path = ( graph , start , end ) => {     if ( start == end ) return true     const queue = [ start ]     const visited = {}     visited[ start ] = true     while (queue.length) {         const node = queue. shift ()         const neighbors = graph [node]         for ( let i = 0 ; i < neighbors.length; i ++ ) {             if ( ! visited[neighbors[i]]) {                 if (neighb

Categories

Big Data Analytics Binary Search Binary Search Tree Binary To Decimal binary tree Breadth First Search Bubble sort C Programming c++ Chemical Reaction and equation class 10 class 10th Class 9 Climate Complex Numbers computer network counting sort CSS Cyber Offenses Cyber Security Cyberstalking Data Science Data Structures Decimal To Binary Development diamond pattern Digital Marketing dust of snow Economics Economics Lesson 4 Email Validation English fire and ice Food Security in India Footprints Without feet Forest And Wildlife Resources game Geography Geography lesson 6 glassmorphism Glossary Graph HackerRank Solution hindi HTML image previewer India-Size And Location Insertion Sort Internet Network Status Interview Questions Introduction to cyber crime and cyber security IT javascript tricks json to CSV converter lesson 2 lesson 1 lesson 2 Lesson 3 Lesson 6 lesson 7 Life lines of National Economy life processes Linear Search Linked List lowest common ancestor Machine Learning MCQs median in array Merge sort min and max of two numbers Moment Money and Credit My Childhood Natural Vegetation and Wildlife NCERT Network connectivity devices Network Models Network Security No Men Are foreign Node.js operator overloading P5.js PHP Physical features of India Population Prime Numbers python Quick sort R language Rain on the roof Regular Expression Resources and development reversing array saakhi science Searching Algorithm Selection sort Social Media Marketing social science Software Engineering Software Testing Sorting Algorithm Stacks staircase pattern System Concepts Text Recognition The last Leaf time converter Time Passed From A Date Todo List App Tree Trending Technologies Understanding Economic Development username and password video player Visualization water resources Wired And Wireless LAN साखी
Show more

Popular Posts

Big Data MCQs(multiple choice questions) with answers - letsbug

Digital Marketing MCQ(Multiple Choice Questions) with Answers | part 1 | letsbug

Software Engineering MCQs questions with answers - letsbug