
Kashif Ahmed
@kashif_codes
Followers
1
Following
20
Media
9
Statuses
15
A Software Engineer π¨βπ»
India
Joined September 2023
Solved 33 Easy + Medium Problems on Codedamn in 2 days. From some random 9000 rank to 8th rank. #Codedamn #Javascript #Coding #InterviewQuestion.#DSA #HTML #webdevelopment
0
0
0
I've completed the Build Your Own Static Website course in the Intensive Program. I've learnt core concepts and Built in-demand skills. Check out my certificate:
certificates.ccbp.in
A Proven Curriculum to Get a Tech Job of βΉ4.5 - βΉ 9 LPA, with India's First-Ever Industry Ready Certification [IRC]
0
0
0
Job search is now painless, thanks to @Instahyre.
instahyre.com
Search and apply to jobs at 10000+ top companies. Find high paying jobs in IT, software, sales, marketing, operations, finance and more. Hire top talent.
0
0
0
Never Pay any money to any HR Consultancy or anyone.especially after clearing interviews, if they ask money in the exchange for Job opportunities. Don't Trust any consultancy, except popular ones. Credible consultancies doesn't guarantee job,they write resumes or push ur profile.
0
0
0
How to reverse each word of string in Javascript?No direct library method available to reverse any given string in javascript. But.1 - split each word.2- use map method.3 - split each char within word.4- Reverse and join the splitted char array.5- Join every word of array.#JS
0
0
0
Lets find out the most frequent within the same loop. Just like tracking the current maximum in every iteration. Below is the code.#JavaScript #Coding #DSA #Array .#Programming #JavaScriptInterviewQuestions
0
0
0
Hi There.Only If you feel that the information and coding solutions provided on this handle are good then hit the Like. Lets find out the most frequent element in an array. First approach in mind is to make Object of keys and their count of their occurences.
1
0
0
Balancing Brackets is one of the common interview problems which might be asked in Javascript, The Important thing to be kept in mind is that while removing the opening bracket from the stack the closing bracket at current position should form the pair. #JavaScript #coding #DSA
0
0
1
Ever had confusion in accessing the key from JavaScript Object? I had alot π.As long as the key in object is Ξ±numeric or has '$' or '_' you can access it via '.' notation But.many times key has either space or special characters in between then. #JavaScript #codinglife .‡
0
0
0
Yes, guessed it correct !.The type of 'intro' variable is object. And to confirm if it is an array,.check it by Array.isArray() method. And the interviewee can ask to convert enumerable variable to an iterable variable making it a popular question to be asked in JS interview.π₯π₯
0
0
0
A map method in javascript returns a new array, so if an object is converted into a set of key-value pairs but surrounded by square brackets, like the example below:.Then it will be interesting to see the data type of variable intro.
1
0
0
If a set of characters in your favorite programming language is enclosed either with single or double quote then you'll refer it of type 'String'. Right !.But What if we enclose a set of key-value pairs in square brackets,Will it be called array in JavaScript? let's checkout .
1
0
0
This is one of the commonly asked Interview Question in JavaScript interviews. This Question deals with the knowledge of let and var and its scope. For var case the value of iterates till end but in case of let the setTimeout closure is invoked every time and the output varies.π₯
0
0
0