Welcome to our store

  • Home
  • Catalog
  • Collections

THE.png

  • Home
  • Catalog
  • Collections
Cart

THE Z HUT

AMHANCIBLE Night Stand Set 2, LED Nightstand with Charging Station, End Side Tables with USB Port & Outlet, Bedside Table with Fabric Drawers for Bedroom Living Room, Black, HET053LBK

Regular price $159.99
Regular price $159.99 Sale price $159.99
Sold out
NumberOfItems
Color
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.now('premium-module-5-comparison-table-scroller').execute(function(init){ if (init) { return; } P.register('premium-module-5-comparison-table-scroller', function(){ return function() { P.when('jQuery', 'a-popover', 'A', 'ready').execute(function($, popover, A) { function initCompTable(module) { /** * Premium comparison table: popover trigger module */ var comparisonName = $(module).data('comparison-name'); (function() { var $additionalInfo = $('.aplus-v2 .aplus-popover-trigger'); $additionalInfo.each(function(i, trigger) { return popover.create(trigger, $(trigger).data()); }); $additionalInfo.hover( function() { $(this).focus(); } ); })(); /** * Premium comparison table: adjust column width module */ (function() { var VISIBLE_COLUMNS = 4.2; /* How many visible columns on load */ var MIN_WIDTH = 230; var getWidth = function() { return $(this).outerWidth(); } /* cache selectors */ var $container = $('.aplus-v2 .comparison-table #'+comparisonName), $header = $('.aplus-v2 .comparison-table #'+comparisonName+' td.attribute'), $slider = $('.aplus-v2 .comparison-table #'+comparisonName+' .table-slider'), $columns = $('.aplus-v2 .comparison-table #'+comparisonName+' .aplus-data-column'), $activeColumn = $('.aplus-v2 .comparison-table #'+comparisonName+' .aplus-data-column.active.active-item'); /* Formula for determining desired column width */ var calculatedColumnWidth = Math.floor( ($container.innerWidth() - $header.innerWidth()) / VISIBLE_COLUMNS ); var childWidths = $activeColumn.map(getWidth).get(); var maxChildWidth = Math.max(MIN_WIDTH, Math.max.apply(Math, childWidths)); var minColumnWidth = $columns.innerWidth(); /* set the min-width of each column to the calulated width or minWidth */ $columns.css( 'min-width', Math.max(MIN_WIDTH, (calculatedColumnWidth < minColumnWidth ? calculatedColumnWidth : minColumnWidth)) ); $activeColumn.css('width', maxChildWidth); /* show the component */ $container.removeClass('loading'); })(); /** * Premium comparison table: sticky attribute & column */ (function() { /* cache selectors */ const comparisonTable = document.querySelector('.aplus-v2 .comparison-table #'+comparisonName); const header = comparisonTable.querySelector('td.attribute'); const fixedColumn = comparisonTable.querySelector('td.active'); const attributeColumnObserver = new ResizeObserver((entries) => { for (let entry of entries) { const bounds = entry.target.getBoundingClientRect().width; const activeCellWidth = window.getComputedStyle(fixedColumn).left; if (bounds + "px" !== activeCellWidth) { const activeCells = document.querySelectorAll('.aplus-data-column.active'); activeCells.forEach(cell => cell.style.left = bounds + "px"); } } }) attributeColumnObserver.observe(header) })(); /** * Premium comparison table: top scroll bar */ (function() { /* cache selectors */ var $header = $('.aplus-v2 .comparison-table #'+comparisonName+' td.attribute'), $fixedColumn = $('.aplus-v2 .comparison-table #'+comparisonName+' td.active'), $scrollWrapperTop = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-wrapper-top'), $scrollWrapperBottom = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-wrapper-bottom'), $scrollWidth = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-width'), $scrollBar = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-bar'); /* confirm fixed column exists and can add width to the total width of the scroll bar */ var fixedColumnWidth = $fixedColumn.innerWidth(); if ( fixedColumnWidth === null ) { fixedColumnWidth = 0; } /* set width of scrollBar */ $scrollBar.css('width', $scrollWidth.innerWidth() + fixedColumnWidth + $header.innerWidth()); /* connect scrolls together */ $scrollWrapperTop.scroll(function() { $scrollWrapperBottom.scrollLeft($scrollWrapperTop.scrollLeft()); }); $scrollWrapperBottom.scroll(function() { $scrollWrapperTop.scrollLeft($scrollWrapperBottom.scrollLeft()); }); })(); } $('.aplus-v2 .premium-aplus-module-5 .table-container').each(function(index, module) { initCompTable(module); }); }); } }); }); })); (function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.now('premium-module-12-nav-carousel').execute(function(init) { if (init) { return; } P.register('premium-module-12-nav-carousel', function(){ return function() { P.when('A', 'jQuery', 'a-carousel-framework', 'ready').execute(function (A, $, framework) { function initiateCarousel(module) { var MODULE_ID = $(module).data('module-id'); /** * Carousel button element classname * @const */ var GOTO_BTN_CLASS_NAME = "aplus-goto-btn-" + MODULE_ID; /** * Carousel button element active classname * @const */ var GOTO_BTN_ACTIVE_CLASS_NAME = "aplus-active"; /** * AUI name for aui carousel * @const */ var CAROUSEL_NAME = "premium-aplus-12-carousel-" + MODULE_ID; /** * Module class name * @const */ var MODULE_CLASS_NAME = ".aplus-v2 .premium-aplus-module-12"; /** * Carousel text container class name * @const */ var TEXT_CONTAINER_CLASS_NAME = MODULE_CLASS_NAME + " .aplus-carousel-text-container-" + MODULE_ID; /** * Carousel text hidden class name * @const */ var TEXT_CONTAINER_HIDDEN = "aplus-hidden"; /** * Carousel horizontal scroll container class name * @const */ var HORIZONTAL_SCROLL_CONTAINER_CLASS_NAME = MODULE_CLASS_NAME + " .aplus-horizontal-scroll-container-" + MODULE_ID; function showCarouselText(oldIndex, newIndex) { var oldClass = TEXT_CONTAINER_CLASS_NAME + "-" + oldIndex; var newClass= TEXT_CONTAINER_CLASS_NAME + "-" + newIndex; $(oldClass).addClass(TEXT_CONTAINER_HIDDEN); $(newClass).removeClass(TEXT_CONTAINER_HIDDEN); } function scrollToCarouselButton(scrollLeft) { if ($(HORIZONTAL_SCROLL_CONTAINER_CLASS_NAME).length) { $(HORIZONTAL_SCROLL_CONTAINER_CLASS_NAME).animate({scrollLeft}, 200); } } /** * Creates a CarouselButton class for provided carousel instance * @param {object} carousel - AUI Carousel instance * @returns {Class} - CarouselButton Class */ function CarouselButtonTemplate(carousel) { /** * Button for controlling the active slide * @constructor * @param {number} index - slide index * @param {DOMElement} [elem] - optional DOM element to use as this objects DOM representation */ function CarouselButton(index, elem) { var self = this; this.index = index; this.carousel = carousel; /* create the button element */ this.elem = this.getElem(elem); this.$elem = $(this.elem); /* store jquery version */ this.elem.addEventListener('click', self.handleClick.bind(self)); this.elem.setAttribute('role', 'tab'); /* add this object to the object manager */ CarouselButton.objects.byId[index] = this; CarouselButton.objects.all.push(this); } /** * Describe behavior for click events on this.elem * @memberOf CarouselButton */ CarouselButton.prototype.handleClick = function(e) { e.preventDefault(); this.carousel.gotoPage(this.index); }; /** * Enter active state * @memberOf CarouselButton */ CarouselButton.prototype.activate = function() { this.$elem.addClass(GOTO_BTN_ACTIVE_CLASS_NAME).attr('aria-selected', 'true'); }; /** * Enter inactive state * @memberOf CarouselButton */ CarouselButton.prototype.deactivate = function() { this.$elem.removeClass(GOTO_BTN_ACTIVE_CLASS_NAME).attr('aria-selected', 'false'); }; /** * Returns an existing or creates a new bound element for this object * @memberOf CarouselButton * @param {DOMElement} [elem] - optionally provide an existing element in the DOM to use * @returns {DOMElement} - this objects DOM representation */ CarouselButton.prototype.getElem = function(elem) { if (this.elem) return this.elem; if (elem) return elem; var createdElem = document.createElement('span'); createdElem.className = GOTO_BTN_CLASS_NAME; return createdElem; }; /** @const Object manager */ CarouselButton.objects = { byId: {}, all: [], }; return CarouselButton; } framework.onInit(CAROUSEL_NAME, function(carousel) { /** @const {Class} */ var CarouselButton = CarouselButtonTemplate(carousel); /* create carousel controls */ var $carouselBtns = $(safeClassSelector(GOTO_BTN_CLASS_NAME)); var btns = $carouselBtns.map(function(i, btnElem) { return new CarouselButton(i + 1, btnElem); }); /* activate first one */ CarouselButton.objects.byId[1].activate(); /* Listen to slide changes */ A.on("a:carousel:" + CAROUSEL_NAME + ":change:pageNumber", function (data) { var newCarouselButton = CarouselButton.objects.byId[data.newValue]; var marginLeft = parseInt(getComputedStyle(newCarouselButton.elem).getPropertyValue('margin-left')); var positionLeft = newCarouselButton.elem.offsetLeft - marginLeft; newCarouselButton.activate(); CarouselButton.objects.byId[data.oldValue].deactivate(); scrollToCarouselButton(positionLeft); showCarouselText(data.oldValue, data.newValue); }); }); /** * @returns {string} - css classname prefixed with module selector */ function safeClassSelector(className) { return '.' + MODULE_CLASS_NAME + ' .' + className; } } $('.aplus-v2 .premium-aplus-module-12 .aplus-carousel-container').each(function (index, module) { initiateCarousel(module); }); framework.createAll(); framework.initializeAll(); }); } }) }); }));

LED Nightstands Set of 2

Meet the remarkable furniture pieces from AMHANCIBLE, designed to enhance your living spaces with both convenience and charm.

End Tables or Night Stand? Just Up to You!!!

Facilitating New Lifestyle with Charging Station

LED night stand feature USB port, Type C charger and 2 AC outlets keep your devices fully powered up at all times

Previous page
Next page
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.when('premium-module-12-nav-carousel').execute(function(init){ init(); }); }));

Various Colors for Your Choice

Previous page
  1. Black LED Nightstand with Charging Station

    • Product Size: 15.75” L x 13.78” W x 23.62” H
    • Package set of 1: 1 x Nightstand; 1 x Accessory Kit; 1 x Instruction
    • Package set of 2: 2 x Nightstand; 1 x Accessory Kit; 1 x Instruction

    Learn More
  2. Brown LED Nightstand with Charging Station

    • Product Size: 15.75” L x 13.78” W x 23.62” H
    • Package set of 1: 1 x Nightstand; 1 x Accessory Kit; 1 x Instruction
    • Package set of 2: 2 x Nightstand; 1 x Accessory Kit; 1 x Instruction

    Learn More
  3. Grey LED Nightstand with Charging Station

    • Product Size: 15.75” L x 13.78” W x 23.62” H
    • Package set of 1: 1 x Nightstand; 1 x Accessory Kit; 1 x Instruction
    • Package set of 2: 2 x Nightstand; 1 x Accessory Kit; 1 x Instruction

    Learn More
  4. Dark Grey LED Nightstand with Charging Station

    • Product Size: 15.75” L x 13.78” W x 23.62” H
    • Package set of 1: 1 x Nightstand; 1 x Accessory Kit; 1 x Instruction
    • Package set of 2: 2 x Nightstand; 1 x Accessory Kit; 1 x Instruction

    Learn More
  5. White LED Nightstand with Charging Station

    • Product Size: 15.75” L x 13.78” W x 23.62” H
    • Package set of 1: 1 x Nightstand; 1 x Accessory Kit; 1 x Instruction
    • Package set of 2: 2 x Nightstand; 1 x Accessory Kit; 1 x Instruction

    Learn More
Next page
P.now("premium-aplus-13-carousel-5").execute(function(init) { if (init) { return; } P.register("premium-aplus-13-carousel-5", function(){ return function() { P.when("A", "jQuery", "a-carousel-framework", "ready").execute(function (A, $, framework) { const ENTER_KEY_CODE = 13; const ESCAPE_KEY_CODE = 27; var moduleId = "5"; var carouselName = "premium-aplus-13-carousel-5"; var paginationAction = "aplus-pagination-dot-action-" + moduleId; var paginationGroup = "#aplus-pagination-group-" + moduleId + "-" + carouselName; /* If the carousel goes to a new page */ A.on("a:carousel:"+carouselName+":change:pageNumber", function (data) { A.$(paginationGroup+" .carousel-slider-circle").removeClass("aplus-carousel-active").attr('aria-selected', 'false').attr('tabindex', -1) .eq(data.newValue - 1).addClass("aplus-carousel-active").attr('aria-selected', 'true').attr('tabindex', 0); }); function syncPaginationDotsWithCarouselPages(numPages) { const children = document.querySelector(paginationGroup).children; for(let i = 0; i < children.length; i++) { if (i >= numPages) { // If number of dots > num of pages, we should hide other dots children[i].classList.add('aplus-pagination-dot--display-none'); } else if(children[i].classList.contains('aplus-pagination-dot--display-none')){ // Reset display of dots if it was hidden before children[i].classList.remove('aplus-pagination-dot--display-none'); } } } framework.onInit(carouselName, function (carousel) { var totalPages = carousel.getAttr('totalPages'); syncPaginationDotsWithCarouselPages(totalPages); /* Resize event handler to re-calculate the pagination dots count based on orientation */ window.addEventListener('resize', function() { carousel.resize(); totalPages = carousel.getAttr('totalPages'); syncPaginationDotsWithCarouselPages(totalPages); }); A.declarative(paginationAction, 'click keydown', function(event){ var isClick = event.type === 'click'; var isKeydown = event.type === 'keydown'; var isEnter = isKeydown && event.$event.keyCode === ENTER_KEY_CODE; var isEsc = isKeydown && event.$event.keyCode === ESCAPE_KEY_CODE; if (isClick || isEnter) { var data = event.data; carousel.gotoPage(data.page); } else if (isEsc) { // force remove focus event.$target.blur() } }); }); }); } }); });
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.when("premium-aplus-13-carousel-5").execute(function(init){init();}); }));

More Different Furniture Options

Nightstands Set of 2

logShoppableMetrics("premium-module-5-comparison-table-scroller", false)
Buying Options

Nightstands Set of 2

logShoppableMetrics("premium-module-5-comparison-table-scroller", false)
Buying Options

Nightstands Set of 2

logShoppableMetrics("premium-module-5-comparison-table-scroller", true)

Night Stand Set of 2

logShoppableMetrics("premium-module-5-comparison-table-scroller", false)
Buying Options

Nightstands Set of 2

logShoppableMetrics("premium-module-5-comparison-table-scroller", true)

Nightstands Set of 2

logShoppableMetrics("premium-module-5-comparison-table-scroller", false)
Buying Options

Nightstands Set of 2

logShoppableMetrics("premium-module-5-comparison-table-scroller", true)
Customer Reviews
4.3 out of 5 stars 1,443
4.3 out of 5 stars 1,212
4.1 out of 5 stars 377
4.1 out of 5 stars 358
4.4 out of 5 stars 379
4.4 out of 5 stars 379
4.4 out of 5 stars 358
Price
$129.99$129.99 $113.99$113.99 $56.09$56.09 $66.49$66.49 $89.99$89.99 — $139.99$139.99
Color
Black Black Black Black Black Black Black
Number of Drawers
3 2 1 2 3 4 4
LED Lights
✔ ✔ ✔ ✔ ✔ ✔ ✔
Outlets
✔ ✔ ✔ ✔ ✔ ✔ ✔
USB Ports
✔ ✔ ✔ ✔ ✔ ✔ ✔
Type-c
✔ ✔ ✔ ✔ ✔ ✔ ✔
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.when('premium-module-5-comparison-table-scroller', 'ready').execute(function(init){ init() }); }));
  • Versatile RGB LED Nightstand: Adjust the LED lights’ color, brightness, and strobe mode to suit any scene. The soft lighting helps ease nighttime fears, while the vibrant, colorful design adds a warm and stylish, dreamy atmosphere to your bedroom or living room
  • Nightstand with Charging Station: This end table features a modern plug-in design to meet your charging needs, complete with 2 AC outlets, a USB port, and a USB-C port. Easily charge your mobile devices quickly with a USB cable while adding a stylish touch to your home
  • Lightweight and Sturdy Design: This nightstands set of 2 is crafted from sturdy particleboard, ensuring easy cleaning and maintenance. The fabric drawer design offers ample storage while reducing weight for easy mobility. Rigorously tested, each table holds up to 110 pounds, and each drawer supports 11 pounds
  • Spacious Nightstand Storage Cabinet: Measuring 15.75" D x 13.78" W x 23.62" H, this bedside table with charging station offers 5 distinct storage spaces. The top panel and open compartment are perfect for decorations, phones, while 3 closed fabric drawers provide ample space for less frequently used items. Ideal for bedroom; office; gaming room
  • Easy Assembly: With a simple structure, numbered parts, installation manual, and included tools, you can assemble the night stands in just 30 minutes. It’s a great chance to bond with family and friends. If you find any missing or damaged parts, please contact us for prompt replacements
  • Perfect Gift: This night stand set 2 is an ideal gift for your child, reflecting your care and love in their bedroom or living room. Its lightweight design allows for easy movement, while the soft LED light creating a dreamy, comfortable atmosphere to accompany them through leisure time and long nights
› See more product details
Brand AMHANCIBLE
Product Dimensions 15.75"D x 13.78"W x 23.62"H
Maximum Weight Recommendation 50 Kilograms
Color Black Set 2
Product Care Instructions Wipe with Dry Cloth, Wipe with Damp Cloth

Quick links

  • Search
  • Catalog
  • Collections
Payment methods
  • Choosing a selection results in a full page refresh.