Skip to content

Instantly share code, notes, and snippets.

View rajeevAgilehub's full-sized avatar

rajeevAgilehub

View GitHub Profile
var MSG_FACTORY = {
'INSUFFICIENT_BALANCE': 'You have not sufficient balance in your account',
'WITHDRAW_LIMIT': 'Withdrawal amount is more than limit',
'WITHDRAW': 'Money withdrawn from your account',
'DEPOSIT': 'Money deposited to your account'
}
/* This module is to notify the user whenever there is an account balance related alert required,
Its takes input and alert based on msg type */
function notifyUser(msg){
@rajeevAgilehub
rajeevAgilehub / index.html
Last active January 6, 2021 09:23
HTML document hierarchy
<html>
<head>
<title>page title</title>
</ head>
<body>
//webpage content
</body>
</html>