i have a question regarding promises const promise = new Promise((resolve, reject) => { const a = 5; (a > 10) ? resolve('Resolved') : reject ('Rejected') }); promise...
In my react project I'm using react router and I've two buttons named Buyer and Seller. So if I select buyer or seller it will navigate to page 1 and there is a submit button....
i am getting this error while trying to install wine . any fix ?
i have tried to understand this keyword ...watched so many videos on youtube and read so many posts. but still i am not able to understand this .....any suggestions ??
Is it a good approach to handle routing via redux ? I have a header, dynamic sidebar and content componets. What is cliked on header determines what is rendered on the sidebar...
offtopic :: i want to install kali linux....along with windows 10....so the i have to make the bootable usb like it is done for windows or ubuntu ? right ?
which distro is best for web developers ?
can you pleae send me a link for that ?
is there any download manager for Ubuntu which captures streaming links ? something like IDM ?
i have createed a website using angular 5. and i have created a database using mongodb...now i want to display the data in my mongodb database on my website......so how can i ...
which software can i use for creating live usb for manjaro liniux ? i am on linux mint 19
Anyone currently using Ubuntu 18.04 as of now?
What's the difference between objects created by constructor functions and the objects created using es6 classes?
In context of JavaScript closures, is it necessary for the inner function to return to act as a closure or just creating a function inside another function is sufficient for i...
<ul> <% data.hobbies.forEach(function(item){ %> <li><%= item %></li> <% });%> </ul> in this code, how are <% used ? i mea...
Is there any website which provides practical javascript problems? I mean where I can solve practical js problems?
the thing i m not able to understand here is that suppose i have two html pages on page 1 i have different style for h1 tags and on page 2 i have some other properties for h1 ...
How's your review of fedore?
i have a website with numerous folders...containing tons of code...i want to minify or you can optimize the whole thing including images.....but the thing will gulp is that it...
if i am chaining promises then do i have to use catch for every then or i can use a single catch at the very end of the code ?