π Pinsk, Belarus;βοΈ julikghost@gmail.com; π LinkedIn/Yuliya Klepusevich
After several successful years in QA, including automation and mentoring, I decided to transition into frontend development.
My background in UI testing, JavaScript, TypeScript, and CI/CD pipelines enables me to create stable and user-friendly interfaces.
I am now focused on growing as a frontend developer and applying best practices in development and UX.
Languages:
JavaScript
, TypeScript
, SQL
, XML
, JSON
, HTML & CSS
Dev Tools & Collaboration:
GitHub
, GitLab
, JIRA
, Confluence
, VS Code
, MS SQL
, Azure
, DevTools
, Slack
, Figma
, DBeaver
, Postman
, Swagger
, Fiddler
CI/CD:
GitHub Actions
, Git
, RDP
, VMware
, Docker
// Function to convert kilometers to miles
function convertKmToMiles(km) {
return km * 0.621371;
}
// Function to prompt user for numbers and return their sum
function sumInput() {
let arr = [];
while (true) {
let value = prompt("Enter numbers one by one. Click Cancel to stop entering", 0);
// Stop input on empty string, null, or non-finite value
if (value === "" || value === null || !isFinite(value)) break;
arr.push(+value); // Convert to number and add to array
}
let sum = 0;
for (let number of arr) {
sum += number;
}
return sum;
}
// Alert the result of summing the user input
alert(sumInput());
Photography β’ Singing β’ Traveling β’ Painting Glass β’ Board & Roleplaying Games
π Letβs connect and build high-quality, user-friendly software together!