Skip to content

Calculator with light and dark mode. In addition to, responsive design

Notifications You must be signed in to change notification settings

Kingtero17/Calculator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Calculator

Challenge to practice JavaScript, CSS and HTML. Make a functional calculator with a light and dark mode. Additionally, the page must have a responsive design for mobile viewing. For this challenge you must have knowledge of columns, animations, transitions, transformations and basic/intermediate JavaScript.
















Note: For this challenge the "val()" method was used. We do not recommend its for professional applications, projects or pages for the following reasons:

  • With eval(), malicious code can be executed inside your application without permission.

  • With eval(), third-party code can see the scope of your application, which can lead to potential attacks.

The eval() method evaluates or executes an argument. If the argument is an expression, eval() evaluates the expression. If the argument is one or more JavaScript statements, eval() executes the statements.