Demo
Show Random Toast
function showRandomToast(pause_on_hover = false) {
    let type = TYPES[Math.floor(Math.random() * TYPES.length)],
        title = TITLES[type],
        content = CONTENT[type];
    new BsToast({
        title: title,
        subtitle: '11 mins ago',
        content: content,
        type: type,
        pause_on_hover: pause_on_hover,
        delay: 5000,
        position: 'top-right'
    });
}
Demo 2
Pause on Hover
function showRandomToast(pause_on_hover = false) {
    let type = TYPES[Math.floor(Math.random() * TYPES.length)],
        title = TITLES[type],
        content = CONTENT[type];
    new BsToast({
        title: title,
        subtitle: '11 mins ago',
        content: content,
        type: type,
        pause_on_hover: pause_on_hover,
        delay: 5000,
        position: 'top-right'
    });
}
Demo 3
Show Image Toast
function showImageToast() {
    let type = TYPES[Math.floor(Math.random() * TYPES.length)],
        title = TITLES[type],
        content = CONTENT[type];
    new BsToast({
        title: title,
        subtitle: '11 mins ago',
        content: content,
        type: type,
        delay: 5000,
        position: 'top-right',
        img: {
            src: 'https://via.placeholder.com/25',
            class: 'rounded',
            title: 'Thumbnail Title',
            alt: 'Alternative'
        }
    });
}
Demo 4
Show Random Snack
function showSnackToast() {
    let type = TYPES[Math.floor(Math.random() * TYPES.length)],
        content = CONTENT[type].replace('toast', 'snack');
    new BsToast({
        title: content,
        type: type,
        delay: 5000,
        position: 'bottom-left'
    });
}