₹399.00Original price was: ₹399.00.₹280.00Current price is: ₹280.00.
Product description
About the Author
Satoshi Yagisawa was born in Chiba, Japan, in 1977. He is the international bestselling author of Days at the Morisaki Bookshop, his debut novel, which was originally published in 2009 and won the Chiyoda Literature Prize. More Days at the Morisaki Bookshop is the sequel.
// Function to trigger the screen shake (using older syntax)
function triggerScreenShake() {
// Use 'var' instead of 'const'
var body = document.querySelector('body');
// Add the shake-screen class
body.classList.add('shake-screen');
// Use a standard function instead of an arrow function for setTimeout
setTimeout(function() {
body.classList.remove('shake-screen');
}, 500);
}