├── .vscode └── settings.json ├── README.md ├── img.jpg ├── index.html ├── script.js └── style.css /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5502 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### CALCULATOR 2 | -------------------------------------------------------------------------------- /img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/calculator_in_JS/HEAD/img.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/calculator_in_JS/HEAD/index.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/calculator_in_JS/HEAD/script.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahnozahaydarova/calculator_in_JS/HEAD/style.css --------------------------------------------------------------------------------