module.exports = function octdigits() { // discuss at: https://locutus.io/python/octdigits/ // parity verified: Python 3.12 // original by: Kevin van Zonneveld (https://kvz.io) // note 1: Returns the string '01234567' // example 1: octdigits() // returns 1: '01234567' return '01234567' }