$(".js-answer").click(function() {
$(this).addClass("current");
setTimeout(function() {
$(this).removeClass("current");
}, 1400);
});
$(".js-answer").click(function() {
let __this = $(this);
__this.addClass("current");
setTimeout(function() {
__this.removeClass("current");
}, 1400);
});
$(".js-answer").click(function() {
$(this).addClass("current");
setTimeout(() => {
$(this).removeClass("current");
}, 1400);
});