CCodetoomuchincodetoomuch.hashnode.dev·Jun 30, 2021 · 1 min readOne Page Resume : Build Minimalistic ResumeHave you ever got fed up of the fancy designs in resumes that makes them more bloated and distracted for recruiter that he/she won't look at it for what your resume was meant for? No worries, I have got the solution for the problem I've faced persona...00
CCodetoomuchincodetoomuch.hashnode.dev·Jun 27, 2021 · 3 min readJavaScript: Array & MethodsARRAYYYS, are the most used data structure in our programming life, they're used to store ordered collections. const arr = [ 'hey', "what's", 'up?' ]; console.log(arr); // [ 'hey', "what's", 'up?' ] Previously we've gone through Strings and their ...00
CCodetoomuchincodetoomuch.hashnode.dev·Jun 15, 2021 · 3 min readGolang: IntroductionA confession first I am a JavaScript lover, but whenever i write or read code of Golang my loyalty to JS starts fading away, sorry JS :(, enough of my romance now lets move to the subject why you came here for. We'll discuss super-basic of Golang No...00
CCodetoomuchincodetoomuch.hashnode.dev·Jun 10, 2021 · 3 min readJavaScript: String & MethodsAs we know our beloved Javascript comes with 8 primitive-types, and one of them is 'String' which is mostly used, although we daily deal with it but mostly we forget the methods or say functions that comes with it, hence this article to provide a che...00