Hi guys
I'm looking for a free online tool where I can practice HTML, CSS and Javascript. I prefer something with an console included so that I can see my error messages right away. playcode.io is pretty great, but requires a subscribtion if you write more than a certain amount of code. Do you known of other similar solutions where I can see the console as well? I've been using https://onecompiler.com/ which lacks the console : (
Thanks!
Im now learning javascript and inadvertently went to a page that had all three code windows open - html, css and javascript and at the bottom of the page was the test view.
Im looking for something similar or that page I lost the link to.
Thanks
Videos
Currently I am learning Javascript on FreeCodeCamp. I was wondering if anyone knew where the best place was to challenge my skills or knowledge on beginner to intermediate coding problems. I'm willing to do this as I know how beneficial this can be to learning a programming language. I've heard of sites such as LeetCode, but I haven't really looked into it. If you guys could please give me some suggestions on what websites are the best that would be greatly appreciated.
I'm pulling my hair out trying to figure out how to unit test my website's javascript. It seems like most popular tools (ex. Mocha) only work in Node.JS.
Sorry for asking this I suposse this gets asked a lot here but I could not find any info on the matter.
I am learning js for web developing but I already know python. I have been learning for 2 days and today I started js codewars.
Everytime I want to set up an exercise I have to create an html file, link the file to the html, launch the html in the browser, write the code in the js file, open the console on firefox and check if my function has the correct output (I use console.log to check)
It gets old real quick when you have to do that 10 times a day. In python I would just click "run" and that's it.
Is there anyway to check the output on vs code without having to set up the whole thing?
Hi all - I am a neophyte javascript programmer (~1 year of self taught + coding bootcamp experience), and I've been reading everywhere that unit testing is a useful skill to have as a working dev. I want to prepare myself well for my first dev job - so I was curious - what are some good resources for learning unit testing in javascript?
Thank you all!
Where can I find test questions about javascript or react js? I've applied for a job as a js fullstack developer and will have a technical test. Or, if any of you, as a user/interviewer, can you tell me some tips on which questions are most commonly asked? Please let me know
For example
-
Linkedin Assessment
-
AngelList JavaScript assessment https://angel.co/assessments
I just want to try these as prep tests for Interviews
EDIT - I want to practice questions on JavaScript concepts used while developing Software, Not LeetCode style questions
So, I want to get started with testing in JavaScript, but I don't know where to start, what is the common terminology that is used in Testing. There are so many frameworks and libraries like Vitest , Jest, Mocha, Chai etc and I am just confused that where should I get started.
Could you guys recommend a roadmap or tips as to where should I get started ?
When I was going through a bunch of JS videos, I came across this video
https://www.youtube.com/watch?v=tvy0bSgwtTo
I want to learn How to write tests and Learn more about Software testing In general . How should I start
I have code that works with DOM and I need to test it. Only practice I've seen is that tests being run from CLI or IDE (which in turn runs in CLI). But I've never seen tests that run in browser by opening something like index.html. Is it OK or is it a thing to run unit tests in a browser?
I literally have no idea where to start. I would like to, because I know it's best practice and it seems like a good thing to do, but I can't find any resources on getting started at a low enough level to be accessible for someone who has never written a test.
Does anyone know of anywhere I can read up?
Everybody probably has that simple, lightweight and compliant website fires up for quickly validating a little piece of JS (whether it's DOM related or not), what's yours? What makes it your favorite for this purpose? Mine used to be httpbin.org, but it isn't anymore since they started AJAX loading some of the content which is annoying.
Most recently I was working with Jest, and I love how it gives you basically everything out of the box. However, it was noticeably slower than the Mocha/Sinon/Chai combination. I heard about Tape/Ava, but never got a chance to use them. Should I give them a try? I was wondering what are you guys using? What do you most love using? What do you recommend for unit tests, and what for E2E tests?