I am a cybersecurity specialist with more than 2.9 years of experience.
e-mail: vmridzel@gmail.com
KATA "Quarter of the year": Given a month as an integer from 1 to 12, return to which quarter of the year it belongs as an integer number.
const quarterOf = (month) => {
var promnum = (month - month % 3) / 3;
if (month % 3 == 0){
return promnum;
}
else {
return promnum + 1;
}
}
Positive Technologies (july 2024 - present)
ALGONT (july 2023 - july 2024)
Cyclone (january 2023 - april 2023)
Sigma (august 2021 - december 2022)
Information Security (2018 - 2024)
B1
</body> </html>