SSaoudinblog.saoud.dev·Feb 17, 2021 · 3 min readForm Input TypesExamples Select Boxes HTML <select class="form-control" id="beverage"> <option value="coffee">Coffee</option> <option value="tea">Tea</option> <option value="kombucha">Kombucha</option> <option value="water">Water</option> </select> JavaSc...00
SSaoudinblog.saoud.dev·Feb 17, 2021 · 4 min readBusiness and User Interface LogicTerminology Business logic: The code responsible for handling the evaluation and manipulation of data; does not require any user interface. User interface logic: The code responsible for the interaction between the user and the application; handles...00
SSaoudinblog.saoud.dev·Jan 26, 2021 · 7 min readDebugging in JavaScript: Reading Console ErrorsUsing DevTools Console Always have the DevTools console open when debugging. In the console, errors that need to be fixed show up in red while warnings (which don't need to be fixed immediately) show up in yellow. The Failed to load resource: net::...00